Advertisement
Charliezkie

Infinite Jump Script

Nov 18th, 2019
60,128
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 1 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "ReDevs";
  3. Text = "- Infinite Jump executed Spam the space button as you can.";
  4. Icon = "rbxassetid://4414605822";
  5. Duration = 3;
  6. })
  7.  
  8. _G.infinjump = true
  9.  
  10. local Player = game:GetService("Players").LocalPlayer
  11. local Mouse = Player:GetMouse()
  12. Mouse.KeyDown:connect(function(k)
  13. if _G.infinjump then
  14. if k:byte() == 32 then
  15. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  16. Humanoid:ChangeState("Jumping")
  17. wait(0.1)
  18. Humanoid:ChangeState("Seated")
  19. end
  20. end
  21. end)
  22.  
  23. local Player = game:GetService("Players").LocalPlayer
  24. local Mouse = Player:GetMouse()
  25. Mouse.KeyDown:connect(function(k)
  26. k = k:lower()
  27. if k == "f" then
  28. if _G.infinjump == true then
  29. _G.infinjump = false
  30. else
  31. _G.infinjump = true
  32. end
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement