WINX_rblx

Untitled

Nov 12th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1.  
  2.  
  3. -- by isaraw8912
  4. -- Press [R] to turn off and to turn on
  5.  
  6. _G.infinjump = true
  7.  
  8. local Player = game:GetService("Players").LocalPlayer
  9. local Mouse = Player:GetMouse()
  10. Mouse.KeyDown:connect(function(k)
  11. if _G.infinjump then
  12. if k:byte() == 32 then
  13. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  14. Humanoid:ChangeState("Jumping")
  15. wait(0.1)
  16. Humanoid:ChangeState("Seated")
  17. end
  18. end
  19. end)
  20.  
  21. local Player = game:GetService("Players").LocalPlayer
  22. local Mouse = Player:GetMouse()
  23. Mouse.KeyDown:connect(function(k)
  24. k = k:lower()
  25. if k == "r" then
  26. if _G.infinjump == true then
  27. _G.infinjump = false
  28. else
  29. _G.infinjump = true
  30. end
  31. end
  32.  
  33. end)
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment