Advertisement
xosski

Roblox infinite jump

Jan 2nd, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. -- Toggles the infinite jump feature
  2. _G.infinjump = not _G.infinjump
  3.  
  4. if _G.infinJumpStarted == nil then
  5. _G.infinJumpStarted = true
  6.  
  7. -- Notify readiness
  8. pcall(function()
  9. game.StarterGui:SetCore("SendNotification", {
  10. Title = "WeAreDevs Infinite Jump";
  11. Text = "The infinite jump exploit is ready!";
  12. Duration = 5;
  13. })
  14. end)
  15.  
  16. -- Infinite jump logic
  17. local plr = game:GetService("Players").LocalPlayer
  18. local m = plr:GetMouse()
  19. m.InputBegan:Connect(function(input)
  20. if _G.infinjump and input.KeyCode == Enum.KeyCode.Space then
  21. local humanoid = plr.Character and plr.Character:FindFirstChildOfClass("Humanoid")
  22. if humanoid then
  23. humanoid:ChangeState("Jumping")
  24. wait()
  25. humanoid:ChangeState("Seated")
  26. end
  27. end
  28. end)
  29. end
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement