UnknownExploiter

Infinite Jump

Jun 7th, 2020
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. -- Reposted --
  2.  
  3. -- //~ F to toggle ~\ --
  4. --I have no idea who made this
  5. _G.infinjump = true
  6.  
  7. local Player = game:GetService("Players").LocalPlayer
  8. local Mouse = Player:GetMouse()
  9. Mouse.KeyDown:connect(function(k)
  10. if _G.infinjump then
  11. if k:byte() == 32 then
  12. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  13. Humanoid:ChangeState("Jumping")
  14. wait(0.1)
  15. Humanoid:ChangeState("Seated")
  16. end
  17. end
  18. end)
  19.  
  20. local Player = game:GetService("Players").LocalPlayer
  21. local Mouse = Player:GetMouse()
  22. Mouse.KeyDown:connect(function(k)
  23. k = k:lower()
  24. if k == "f" then
  25. if _G.infinjump == true then
  26. _G.infinjump = false
  27. else
  28. _G.infinjump = true
  29. end
  30. end
  31. end)
Add Comment
Please, Sign In to add comment