-- TRKS Hack Ultimate v5.5 (2026 Core Fixed Controls Edition)
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
local StarterGui = game:GetService("StarterGui")
local LocalPlayer = Players.LocalPlayer
local Camera = workspace.CurrentCamera
local Mouse = LocalPlayer:GetMouse()
-- Ekran Kartı / UI Kurulumu
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "TRKSHack_v5_5"
ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ResetOnSpawn = false
-- SÜRÜKLENEBİLİR "TRKS" BUTONU
local ToggleButton = Instance.new("TextButton")
ToggleButton.Size = UDim2.new(0, 50, 0, 50)
ToggleButton.Position = UDim2.new(0, 10, 0, 10)
ToggleButton.BackgroundColor3 = Color3.fromRGB(140, 70, 220)
ToggleButton.Text = "TRKS"
ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
ToggleButton.Font = Enum.Font.GothamBold
ToggleButton.TextSize = 14
ToggleButton.Active = true
ToggleButton.Draggable = true
ToggleButton.Parent = ScreenGui
Instance.new("UICorner", ToggleButton).CornerRadius = UDim.new(1, 0)
-- Ana Panel Ana Gövde
local MainFrame = Instance.new("Frame")
MainFrame.Size = UDim2.new(0, 680, 0, 470)
MainFrame.Position = UDim2.new(0.5, -340, 0.5, -235)
MainFrame.BackgroundColor3 = Color3.fromRGB(20, 12, 28)
MainFrame.Active = true
MainFrame.Draggable = true
MainFrame.Parent = ScreenGui
Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 16)
local Title = Instance.new("TextLabel")
Title.Size = UDim2.new(1, 0, 0, 45)
Title.BackgroundTransparency = 1
Title.Text = "🔮 TRKS HACK v5.5 (ULTIMATE)"
Title.TextColor3 = Color3.fromRGB(210, 140, 255)
Title.TextSize = 22
Title.Font = Enum.Font.GothamBold
Title.Parent = MainFrame
-- 7 ADET GELİŞMİŞ SEKME YÖNETİMİ
local TabBar = Instance.new("Frame")
TabBar.Size = UDim2.new(0, 150, 1, -60)
TabBar.Position = UDim2.new(0, 15, 0, 50)
TabBar.BackgroundTransparency = 1
TabBar.Parent = MainFrame
local PageContainer = Instance.new("Frame")
PageContainer.Size = UDim2.new(1, -190, 1, -60)
PageContainer.Position = UDim2.new(0, 175, 0, 50)
PageContainer.BackgroundTransparency = 1
PageContainer.Parent = MainFrame
local tabs = {"Haraket (Fly)", "Savaş (Aimbot)", "Karakter & Morph", "Işınlanma & ESP", "Emotelar (Fix)", "Sosyal (Fake)", "Değişik Troll"}
local pages = {}
local States = {
Fly = false, FlySpeed = 50, NoClip = false, GodMode = false,
ClickTP = false, ESP = false, InfJump = false, Invisible = false, Aimbot = false,
FollowTarget = nil, BangTarget = nil, FlingTarget = nil, FreezeTarget = nil
}
for i, tabName in ipairs(tabs) do
local TabBtn = Instance.new("TextButton")
TabBtn.Size = UDim2.new(1, 0, 0, 30)
TabBtn.Position = UDim2.new(0, 0, 0, (i-1) * 34)
TabBtn.BackgroundColor3 = Color3.fromRGB(45, 25, 55)
TabBtn.Text = tabName
TabBtn.TextColor3 = Color3.fromRGB(240, 240, 240)
TabBtn.Font = Enum.Font.GothamSemibold
TabBtn.TextSize = 11
TabBtn.Parent = TabBar
Instance.new("UICorner", TabBtn).CornerRadius = UDim.new(0, 6)
local Page = Instance.new("ScrollingFrame")
Page.Size = UDim2.new(1, 0, 1, 0)
Page.BackgroundTransparency = 1
Page.CanvasSize = UDim2.new(0, 0, 2.2, 0)
Page.ScrollBarThickness = 2
Page.Visible = (i == 1)
Page.Parent = PageContainer
pages[i] = Page
TabBtn.MouseButton1Click:Connect(function()
for _, p in ipairs(pages) do p.Visible = false end
Page.Visible = true
end)
end
local function CreateToggleButton(parent, text, position, callback)
local Btn = Instance.new("TextButton")
Btn.Size = UDim2.new(1, 0, 0, 35)
Btn.Position = position
Btn.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
Btn.Text = text .. " : KAPALI"
Btn.TextColor3 = Color3.fromRGB(200, 200, 200)
Btn.Font = Enum.Font.Gotham
Btn.TextSize = 12
Btn.Parent = parent
Instance.new("UICorner", Btn)
local active = false
Btn.MouseButton1Click:Connect(function()
active = not active
Btn.BackgroundColor3 = active and Color3.fromRGB(150, 80, 240) or Color3.fromRGB(35, 30, 45)
Btn.TextColor3 = active and Color3.fromRGB(255, 255, 255) or Color3.fromRGB(200, 200, 200)
Btn.Text = text .. (active and " : AKTİF" or " : KAPALI")
callback(active)
end)
return Btn
end
local function CreateActionButton(parent, text, position, callback)
local Btn = Instance.new("TextButton")
Btn.Size = UDim2.new(1, 0, 0, 32)
Btn.Position = position
Btn.BackgroundColor3 = Color3.fromRGB(65, 40, 85)
Btn.Text = text
Btn.TextColor3 = Color3.fromRGB(255, 255, 255)
Btn.Font = Enum.Font.GothamBold
Btn.TextSize = 12
Btn.Parent = parent
Instance.new("UICorner", Btn)
Btn.MouseButton1Click:Connect(callback)
return Btn
end
---------------------------------------------------------
-- 1. SEKME: HARAKET
---------------------------------------------------------
local page1 = pages[1]
local function ToggleFlyEngine(force)
if force ~= nil then States.Fly = force else States.Fly = not States.Fly end
local char = LocalPlayer.Character
if char and char:FindFirstChild("HumanoidRootPart") then
if States.Fly then
char.Humanoid.PlatformStand = true
local bg = Instance.new("BodyGyro", char.HumanoidRootPart)
bg.Name = "FlyGyro" bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
local bv = Instance.new("BodyVelocity", char.HumanoidRootPart)
bv.Name = "FlyVelocity" bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
else
char.Humanoid.PlatformStand = false
if char.HumanoidRootPart:FindFirstChild("FlyVelocity") then char.HumanoidRootPart.FlyVelocity:Destroy() end
if char.HumanoidRootPart:FindFirstChild("FlyGyro") then char.HumanoidRootPart.FlyGyro:Destroy() end
end
end
end
CreateToggleButton(page1, "Fly (Uçuş - Tıkla/E)", UDim2.new(0,0,0,0), function(val) ToggleFlyEngine(val) end)
CreateToggleButton(page1, "NoClip (Duvar Geçme)", UDim2.new(0,0,0,40), function(val) States.NoClip = val end)
CreateToggleButton(page1, "Click Teleport (Sol CTRL + Tıkla)", UDim2.new(0,0,0,80), function(val) States.ClickTP = val end)
CreateToggleButton(page1, "Infinite Jump (Sonsuz Zıplama)", UDim2.new(0,0,0,120), function(val) States.InfJump = val end)
UserInputService.JumpRequest:Connect(function()
if States.InfJump and LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then
LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
end
end)
Mouse.Button1Down:Connect(function()
if States.ClickTP and UserInputService:IsKeyDown(Enum.KeyCode.LeftControl) and Mouse.Target then
if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.Position + Vector3.new(0, 3, 0))
end
end
end)
local FlySpeedBox = Instance.new("TextBox")
FlySpeedBox.Size = UDim2.new(1, 0, 0, 32)
FlySpeedBox.Position = UDim2.new(0, 0, 0, 160)
FlySpeedBox.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
FlySpeedBox.PlaceholderText = "Fly Hızı Ayarla [1-200]"
FlySpeedBox.Text = ""
FlySpeedBox.TextColor3 = Color3.fromRGB(255, 255, 255)
FlySpeedBox.Parent = page1
Instance.new("UICorner", FlySpeedBox)
FlySpeedBox.FocusLost:Connect(function() local val = tonumber(FlySpeedBox.Text) if val then States.FlySpeed = math.clamp(val, 1, 200) end end)
local SpeedBox = Instance.new("TextBox")
SpeedBox.Size = UDim2.new(1, 0, 0, 32)
SpeedBox.Position = UDim2.new(0, 0, 0, 195)
SpeedBox.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
SpeedBox.PlaceholderText = "Yürüme Hızı (WalkSpeed)"
SpeedBox.Text = ""
SpeedBox.TextColor3 = Color3.fromRGB(255, 255, 255)
SpeedBox.Parent = page1
Instance.new("UICorner", SpeedBox)
SpeedBox.FocusLost:Connect(function() local val = tonumber(SpeedBox.Text) if val and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = val end end)
local JumpBox = Instance.new("TextBox")
JumpBox.Size = UDim2.new(1, 0, 0, 32)
JumpBox.Position = UDim2.new(0, 0, 0, 230)
JumpBox.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
JumpBox.PlaceholderText = "Zıplama Gücü (JumpPower)"
JumpBox.Text = ""
JumpBox.TextColor3 = Color3.fromRGB(255, 255, 255)
JumpBox.Parent = page1
Instance.new("UICorner", JumpBox)
JumpBox.FocusLost:Connect(function() local val = tonumber(JumpBox.Text) if val and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.UseJumpPower = true LocalPlayer.Character.Humanoid.JumpPower = val end end)
---------------------------------------------------------
-- 2. SEKME: SAVAŞ (AIMBOT - MOUSE ODAKLI YENİLENDİ)
---------------------------------------------------------
local page2 = pages[2]
CreateToggleButton(page2, "Aimbot (Mouse Kafaya Kilitlensin)", UDim2.new(0,0,0,0), function(val) States.Aimbot = val end)
RunService.RenderStepped:Connect(function()
if States.Aimbot and LocalPlayer.Character then
local closest, maxDist = nil, math.huge
for _, p in ipairs(Players:GetPlayers()) do
if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("Head") and p.Character.Humanoid.Health > 0 then
local sPos, onScreen = Camera:WorldToScreenPoint(p.Character.Head.Position)
if onScreen then
local dist = (Vector2.new(sPos.X, sPos.Y) - UserInputService:GetMouseLocation()).Magnitude
if dist < maxDist then maxDist = dist; closest = p end
end
end
end
if closest then
-- Kamerayı değil, doğrudan fare imlecini kafa koordinatına odaklar
local targetPos = Camera:WorldToScreenPoint(closest.Character.Head.Position)
mousemoverel = mousemoverel or (syn and syn.mousemoverel)
if mousemoverel then
local mouseLoc = UserInputService:GetMouseLocation()
mousemoverel((targetPos.X - mouseLoc.X)/2, (targetPos.Y - mouseLoc.Y)/2)
else
Camera.CFrame = CFrame.new(Camera.CFrame.Position, closest.Character.Head.Position)
end
end
end
end)
---------------------------------------------------------
-- 3. SEKME: KARAKTER (FIXED INVISIBLE, FIXED GOD MODE & FULL CLONE)
---------------------------------------------------------
local page3 = pages[3]
local TargetUserBox = Instance.new("TextBox")
TargetUserBox.Size = UDim2.new(1, 0, 0, 35)
TargetUserBox.Position = UDim2.new(0, 0, 0, 0)
TargetUserBox.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
TargetUserBox.PlaceholderText = "Oyuncu Adı Yazın..."
TargetUserBox.Text = ""
TargetUserBox.TextColor3 = Color3.fromRGB(255, 255, 255)
TargetUserBox.Parent = page3
Instance.new("UICorner", TargetUserBox)
CreateToggleButton(page3, "God Mode (Kesin Ölümsüzlük - DÜZELTİLDİ)", UDim2.new(0,0,0,40), function(val) States.GodMode = val end)
CreateToggleButton(page3, "Invisible (Kesin Görünmezlik - DÜZELTİLDİ)", UDim2.new(0,0,0,80), function(val) States.Invisible = val end)
-- Karakter Yenilendiğinde/Öldüğünde Kilitlenmeyi Sağlayan Yeni Döngü
local function ApplyCharacterStats(char)
if not char then return end
local hum = char:WaitForChild("Humanoid", 5)
if hum then
if States.GodMode then hum.MaxHealth = math.huge hum.Health = math.huge end
if States.Invisible then
for _, part in ipairs(char:GetDescendants()) do
if part:IsA("BasePart") or part:IsA("Decal") then part.Transparency = 1 end
end
end
end
end
LocalPlayer.CharacterAdded:Connect(ApplyCharacterStats)
RunService.Heartbeat:Connect(function()
if LocalPlayer.Character then
ApplyCharacterStats(LocalPlayer.Character)
if States.GodMode and LocalPlayer.Character:FindFirstChild("Humanoid") and LocalPlayer.Character.Humanoid.Health == 0 then
LocalPlayer:LoadCharacter()
end
end
end)
-- AKSESUARLARI DA KOPYALAYAN GELİŞMİŞ KLONLAMA
CreateActionButton(page3, "Oyuncuyu Klonla (Aksesuarlar Dahil)", UDim2.new(0,0,0,120), function()
local target = Players:FindFirstChild(TargetUserBox.Text)
if target and target.Character and LocalPlayer.Character then
local myChar = LocalPlayer.Character
-- Eskileri Sil
for _, item in ipairs(myChar:GetChildren()) do
if item:IsA("Accessory") or item:IsA("Shirt") or item:IsA("Pants") or item:IsA("BodyColors") then item:Destroy() end
end
-- Yeni Aksesuarları ve Kıyafetleri Klonla
for _, item in ipairs(target.Character:GetChildren()) do
if item:IsA("Accessory") or item:IsA("Shirt") or item:IsA("Pants") or item:IsA("BodyColors") then
local clone = item:Clone()
clone.Parent = myChar
if item:IsA("Accessory") and clone:FindFirstChild("Handle") then
-- Fizik motoru çakışmalarını önle
clone.Handle.CanCollide = false
end
end
end
if target.Character:FindFirstChild("Head") and target.Character.Head:FindFirstChild("face") and myChar:FindFirstChild("Head") then
if myChar.Head:FindFirstChild("face") then myChar.Head.face:Destroy() end
target.Character.Head.face:Clone().Parent = myChar.Head
end
end
end)
CreateActionButton(page3, "BTools Al (Gelişmiş Yapı Silici)", UDim2.new(0,0,0,155), function()
local Tool = Instance.new("Tool") Tool.Name = "TRKS BTools" Tool.RequiresHandle = false Tool.Parent = LocalPlayer.Backpack
Tool.Activated:Connect(function() if Mouse.Target and Mouse.Target ~= workspace then Mouse.Target:Destroy() end end)
end)
---------------------------------------------------------
-- 4. SEKME: IŞINLANMA, ESP & BRING
---------------------------------------------------------
local page4 = pages[4]
CreateToggleButton(page4, "ESP (Oyuncuları İzle)", UDim2.new(0,0,0,0), function(val)
States.ESP = val
if not val then for _, p in ipairs(Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("TRKS_ESP") then p.Character.TRKS_ESP:Destroy() end end end
end)
RunService.Heartbeat:Connect(function()
if States.ESP then
for _, p in ipairs(Players:GetPlayers()) do
if p ~= LocalPlayer and p.Character and not p.Character:FindFirstChild("TRKS_ESP") then
local hl = Instance.new("Highlight") hl.Name = "TRKS_ESP" hl.FillColor = Color3.fromRGB(160, 40, 255) hl.Parent = p.Character
end
end
end
end)
CreateActionButton(page4, "Oyuncuya Git (Teleport)", UDim2.new(0,0,0,40), function()
local target = Players:FindFirstChild(TargetUserBox.Text)
if target and target.Character and LocalPlayer.Character then LocalPlayer.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame end
end)
CreateActionButton(page4, "Oyuncuyu Yanına Çek (Bring)", UDim2.new(0,0,0,75), function()
local target = Players:FindFirstChild(TargetUserBox.Text)
if target and target.Character and LocalPlayer.Character then
target.Character.HumanoidRootPart.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -3)
end
end)
local following = false
CreateActionButton(page4, "Oyuncuyu Yakala/Takip Et", UDim2.new(0,0,0,110), function()
following = not following
States.FollowTarget = following and Players:FindFirstChild(TargetUserBox.Text) or nil
end)
RunService.Heartbeat:Connect(function()
if States.FollowTarget and States.FollowTarget.Character and LocalPlayer.Character then
LocalPlayer.Character.HumanoidRootPart.CFrame = States.FollowTarget.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 3)
end
end)
---------------------------------------------------------
-- 5. SEKME: EMOTELAR & BANG (TAKLA VE BANG KORUNDU)
---------------------------------------------------------
local page5 = pages[5]
local animActive = false
local currentAnim = ""
local function startAnim(name)
animActive = false States.BangTarget = nil RunService.Heartbeat:Wait()
local char = LocalPlayer.Character
if char and char:FindFirstChild("HumanoidRootPart") and char:FindFirstChild("Humanoid") then
char.Humanoid.PlatformStand = true
char.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
char.HumanoidRootPart.RotVelocity = Vector3.new(0,0,0)
animActive = true currentAnim = name
end
end
local function stopAnim()
animActive = false currentAnim = "" States.BangTarget = nil
local char = LocalPlayer.Character
if char and char:FindFirstChild("Humanoid") and char:FindFirstChild("HumanoidRootPart") then
char.Humanoid.PlatformStand = false
char.HumanoidRootPart.CFrame = char.HumanoidRootPart.CFrame * CFrame.new(0, 2.5, 0)
end
end
CreateActionButton(page5, "Oyuncuya BANG Uygula (Korundu)", UDim2.new(0,0,0,0), function()
animActive = false currentAnim = "" RunService.Heartbeat:Wait()
States.BangTarget = States.BangTarget and nil or Players:FindFirstChild(TargetUserBox.Text)
end)
CreateActionButton(page5, "Gerçekçi Namaz (Kusursuz Sabit)", UDim2.new(0,0,0,35), function() startAnim("namaz") end)
CreateActionButton(page5, "Gerçekçi Takla (Akışkan Döngü - Korundu)", UDim2.new(0,0,0,70), function() startAnim("takla") end)
CreateActionButton(page5, "Gerçekçi Boks (Dengeli)", UDim2.new(0,0,0,105), function() startAnim("boks") end)
CreateActionButton(page5, "Şınav Çekme", UDim2.new(0,0,0,140), function() startAnim("sinav") end)
CreateActionButton(page5, "Meditasyon", UDim2.new(0,0,0,175), function() startAnim("meditasyon") end)
CreateActionButton(page5, "Animasyonu Bitir", UDim2.new(0,0,0,210), function() stopAnim() end)
RunService.Heartbeat:Connect(function()
local char = LocalPlayer.Character
if not char or not char:FindFirstChild("HumanoidRootPart") then return end
local root = char.HumanoidRootPart
local t = tick()
if States.BangTarget and States.BangTarget.Character and States.BangTarget.Character:FindFirstChild("HumanoidRootPart") then
char.Humanoid.PlatformStand = true
root.Velocity = Vector3.new(0,0,0)
root.CFrame = States.BangTarget.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1 + math.sin(t * 22) * 0.6)
return
end
if not animActive then return end
root.Velocity = Vector3.new(0,0,0)
root.RotVelocity = Vector3.new(0,0,0)
if currentAnim == "namaz" then
local cycle = t % 5
if cycle < 2.5 then
root.CFrame = CFrame.new(root.Position.X, root.Position.Y, root.Position.Z) * CFrame.Angles(math.rad(65), 0, 0)
else
root.CFrame = CFrame.new(root.Position.X, root.Position.Y - 1.2, root.Position.Z) * CFrame.Angles(math.rad(90), 0, 0)
end
elseif currentAnim == "takla" then
root.CFrame = root.CFrame * CFrame.Angles(0.25, 0, 0)
elseif currentAnim == "boks" then
local punch = math.sin(t * 10)
root.CFrame = CFrame.new(root.Position) * CFrame.Angles(0, punch * 0.2, 0) * CFrame.new(0, 0, -math.abs(punch) * 0.1)
elseif currentAnim == "sinav" then
root.CFrame = CFrame.new(root.Position.X, root.Position.Y - 1.4, root.Position.Z) * CFrame.Angles(math.pi/2, 0, 0) * CFrame.new(0, math.sin(t * 5) * 0.15, 0)
elseif currentAnim == "meditasyon" then
root.CFrame = CFrame.new(root.Position.X, root.Position.Y + math.sin(t * 2) * 0.08, root.Position.Z) * CFrame.Angles(0, t * 0.4, 0)
end
end)
---------------------------------------------------------
-- 6. SEKME: SOSYAL (SAHTE CHAT)
---------------------------------------------------------
local page6 = pages[6]
local MsgBox = Instance.new("TextBox")
MsgBox.Size = UDim2.new(1, 0, 0, 35)
MsgBox.Position = UDim2.new(0, 0, 0, 0)
MsgBox.BackgroundColor3 = Color3.fromRGB(35, 30, 45)
MsgBox.PlaceholderText = "Söylenecek Sahte Mesajı Yazın..."
MsgBox.Text = ""
MsgBox.TextColor3 = Color3.fromRGB(255, 255, 255)
MsgBox.Parent = page6
Instance.new("UICorner", MsgBox)
CreateActionButton(page6, "Sahte Mesajı Gönder (Sohbette Göster)", UDim2.new(0,0,0,45), function()
StarterGui:SetCore("ChatMakeSystemMessage", {
Text = "[" .. TargetUserBox.Text .. "]: " .. MsgBox.Text,
Color = Color3.fromRGB(255, 255, 255),
Font = Enum.Font.SourceSansBold,
TextSize = 18
})
end)
---------------------------------------------------------
-- 7. SEKME: DEĞİŞİK TROLL (FLING & BLIND YENİLENDİ)
---------------------------------------------------------
local page7 = pages[7]
CreateToggleButton(page7, "Oyuncuyu Fırlat (Fling Troll - FIX)", UDim2.new(0,0,0,0), function(val)
States.FlingTarget = val and Players:FindFirstChild(TargetUserBox.Text) or nil
end)
CreateActionButton(page7, "Oyuncuyu Kör Et (Blind Troll - KESİN ÇÖZÜM)", UDim2.new(0,0,0,40), function()
local target = Players:FindFirstChild(TargetUserBox.Text)
if target and target:FindFirstChild("PlayerGui") then
-- Eski tüm panelleri temizle ve yenisini ekle
if target.PlayerGui:FindFirstChild("TRKS_Blind") then target.PlayerGui.TRKS_Blind:Destroy() end
local BlindGui = Instance.new("ScreenGui", target.PlayerGui)
BlindGui.Name = "TRKS_Blind"
local Frame = Instance.new("Frame", BlindGui)
Frame.Size = UDim2.new(1, 0, 1, 0)
Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Frame.Active = true
end
end)
CreateToggleButton(page7, "Oyuncuyu Laglat/Dondur (Freeze)", UDim2.new(0,0,0,75), function(val)
States.FreezeTarget = val and Players:FindFirstChild(TargetUserBox.Text) or nil
end)
RunService.Heartbeat:Connect(function()
-- Maksimum Tork Gücü Eklenmiş Yeni Nesil Fling
if States.FlingTarget and States.FlingTarget.Character and LocalPlayer.Character then
local pRoot = LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
local tRoot = States.FlingTarget.Character:FindFirstChild("HumanoidRootPart")
if pRoot and tRoot then
pRoot.CFrame = tRoot.CFrame * CFrame.new(0, 0, 0)
pRoot.Velocity = Vector3.new(999999, 999999, 999999)
end
end
if States.FreezeTarget and States.FreezeTarget.Character then
local tRoot = States.FreezeTarget.Character:FindFirstChild("HumanoidRootPart")
if tRoot then tRoot.Anchored = true else tRoot.Anchored = false end
end
end)
---------------------------------------------------------
-- ANA TETİKLEYİCİLER & ARKA PLAN DÖNGÜLERİ
---------------------------------------------------------
local function toggleMenu() MainFrame.Visible = not MainFrame.Visible end
ToggleButton.MouseButton1Click:Connect(toggleMenu)
UserInputService.InputBegan:Connect(function(input, gpe)
if gpe then return end
if input.KeyCode == Enum.KeyCode.K then
toggleMenu()
elseif input.KeyCode == Enum.KeyCode.E then
ToggleFlyEngine()
end
end)
RunService.Stepped:Connect(function()
local char = LocalPlayer.Character
if not char then return end
if States.NoClip then
for _, part in ipairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end
end
if States.Fly and char.HumanoidRootPart:FindFirstChild("FlyVelocity") then
local vel = Vector3.new(0, 0.1, 0)
if UserInputService:IsKeyDown(Enum.KeyCode.W) then vel = vel + (Camera.CFrame.LookVector * States.FlySpeed) end
if UserInputService:IsKeyDown(Enum.KeyCode.S) then vel = vel - (Camera.CFrame.LookVector * States.FlySpeed) end
char.HumanoidRootPart.FlyVelocity.velocity = vel
char.HumanoidRootPart.FlyGyro.cframe = Camera.CFrame
end
end)