Advertisement
Glitch_kingGUEST666

Steep steps anti gravity script

Feb 12th, 2023
3,261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. loadstring(game:HttpGet('https://pastebin.com/raw/vViq08jX'))()
  2.  
  3. local InfiniteJumpEnabled = true
  4. game:GetService("UserInputService").JumpRequest:connect(function()
  5. if InfiniteJumpEnabled then
  6. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  7. end
  8. end)
  9.  
  10.  
  11. while true do
  12. wait(1)
  13. mouse = game.Players.LocalPlayer:GetMouse()
  14. tool = Instance.new("Tool")
  15. tool.RequiresHandle = false
  16. tool.Name = "Permanent Tp Tool"
  17. tool.Activated:connect(function()
  18. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  19. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  20. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  21. end)
  22. tool.Parent = game.Players.LocalPlayer.Backpack
  23. end
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement