-- [[ PABLO HUB V6 - HYPER LOCK EDITION ]] local link_money = "https://link-center.net/4903215/RFk3TTXr8jPr" if setclipboard then setclipboard(link_money) end local function get_p_k() local b = {80, 65, 66, 76, 79, 84, 72, 69, 68, 69, 86, 50} -- PABLOTHEDEV2 local r = "" for _, v in pairs(b) do r = r .. string.char(v) end return r end local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "PABLO HUB | V6 HYPER 🎯", ConfigurationSaving = {Enabled = false}, KeySystem = true, KeySettings = { Title = "LOGIN VIP", Subtitle = "Link no teclado!", Note = "Cole a chave:", Key = {get_p_k()} } }) -- [[ ABA COMBATE: O NOVO AIMBOT (FORÇADO) ]] local T1 = Window:CreateTab("Combate 🎯", 4483362458) T1:CreateToggle({ Name = "Aimbot Lock (Grudar na Cabeça)", CurrentValue = false, Callback = function(v) _G.AimbotEnabled = v local Camera = workspace.CurrentCamera local Player = game.Players.LocalPlayer game:GetService("RunService").RenderStepped:Connect(function() if _G.AimbotEnabled then local Target = nil local ShortestDistance = math.huge for _, p in pairs(game.Players:GetPlayers()) do if p ~= Player and p.Character and p.Character:FindFirstChild("Head") then local Pos, OnScreen = Camera:WorldToScreenPoint(p.Character.Head.Position) if OnScreen then local MousePos = game:GetService("UserInputService"):GetMouseLocation() local Distance = (Vector2.new(Pos.X, Pos.Y) - MousePos).Magnitude if Distance < ShortestDistance and Distance < 400 then -- 400 é o alcance Target = p ShortestDistance = Distance end end end end if Target then -- ISSO AQUI FORÇA A CÂMERA A OLHAR PRO INIMIGO 60X POR SEGUNDO Camera.CFrame = CFrame.new(Camera.CFrame.Position, Target.Character.Head.Position) end end end) end, }) -- [[ ABA VISUAL: ESP HIGHLIGHT (MELHORADO) ]] local T2 = Window:CreateTab("Visual 👁️", 4483362458) T2:CreateButton({ Name = "Ver Inimigos (Wallhack)", Callback = function() spawn(function() while true do for _, p in pairs(game.Players:GetPlayers()) do if p ~= game.Players.LocalPlayer and p.Character then if not p.Character:FindFirstChild("Highlight") then local h = Instance.new("Highlight", p.Character) h.FillColor = Color3.fromRGB(255, 0, 0) h.OutlineColor = Color3.fromRGB(255, 255, 255) end end end task.wait(1) end end) end, }) -- [[ ABA PLAYER: VELOCIDADE E PULO ]] local T3 = Window:CreateTab("Player 🏃", 4483345998) T3:CreateSlider({ Name = "Velocidade", Range = {16, 120}, Increment = 2, CurrentValue = 16, Callback = function(v) _G.WalkSpeed = v spawn(function() while _G.WalkSpeed > 16 do pcall(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = _G.WalkSpeed end) task.wait(0.1) end end) end, }) T3:CreateButton({ Name = "Super Pulo (Gravidade)", Callback = function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100 end, })