Advertisement
AnthonyJohn14

infinite jump script

Dec 5th, 2021 (edited)
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. _G.infinjump = true
  2.  
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Mouse = Player:GetMouse()
  5. Mouse.KeyDown:connect(function(k)
  6. if _G.infinjump then
  7. if k:byte() == 32 then
  8. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  9. Humanoid:ChangeState("Jumping")
  10. wait(0.1)
  11. Humanoid:ChangeState("Seated")
  12. end
  13. end
  14. end)
  15.  
  16. local Player = game:GetService("Players").LocalPlayer
  17. local Mouse = Player:GetMouse()
  18. Mouse.KeyDown:connect(function(k)
  19. k = k:lower()
  20. if k == "f" then
  21. if _G.infinjump == true then
  22. _G.infinjump = false
  23. else
  24. _G.infinjump = true
  25. end
  26. end
  27. end)
  28.  
  29.  
  30.  
  31. --JOIN THE DISCORD SERVER: https://discord.gg/Qpg6qr62qM
  32.  
  33. --SUBSCRIBE TO OUR CHANNEL: https://www.youtube.com/channel/UC4H-RU4wSSPeUD6KenwN1hA
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement