Nexus43

Infinite Jump Version Two

May 4th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. --Infinite Jump Version Two By Nexus42, Hold Space--
  2.  
  3. print("Starting Script Core - By Nexus42")
  4.  
  5. local UserInputService = game:GetService("UserInputService")
  6. local sDown = UserInputService:IsKeyDown(Enum.KeyCode.Space)
  7.  
  8. while true do
  9.  
  10. wait(0.1)
  11.  
  12. local sDown = UserInputService:IsKeyDown(Enum.KeyCode.Space)
  13. if sDown then
  14.  
  15. repeat
  16.  
  17. game:GetService('Players').LocalPlayer.Character.Humanoid:ChangeState("Jumping")
  18. wait()
  19. game:GetService('Players').LocalPlayer.Character.Humanoid:ChangeState("Seated")
  20.  
  21. local sDown = UserInputService:IsKeyDown(Enum.KeyCode.Space)
  22.  
  23. until(not sDown)
  24. end
  25. end
  26.  
  27. --End Script
Add Comment
Please, Sign In to add comment