JanFelio

nothinjg...

Nov 18th, 2023
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | Gaming | 0 0
  1. --[[
  2. © 2022 WeAreDevs | The WeAreDevs Infinite Jump script
  3. Created and distributed by https://wearedevs.net/scripts
  4. March 9, 2022
  5.  
  6. Step 1: Inject this script into any game using a Lua injector like JJSploit
  7. Step 2: When you get the ready notification, spam the space bar to jump as many times as you want
  8.  
  9. Controls:
  10. Reinject the script to toggle the infinite jump script on or off.
  11. Excute Lua "G.infinjump = true" to explicity turn the infinite jump script on
  12. Excute Lua "G.infinjump = false" to explicity turn the infinite jump script off
  13. ]]
  14.  
  15. --Toggles the infinite jump between on or off on every script run
  16. _G.infinjump = not _G.infinjump
  17.  
  18. if _G.infinJumpStarted == nil then
  19. --Ensures this only runs once to save resources
  20. _G.infinJumpStarted = true
  21.  
  22. --Notifies readiness
  23. game.StarterGui:SetCore("SendNotification", {Title="WeAreDevs.net"; Text="The WeAreDevs Infinite Jump exploit is ready!"; Duration=5;})
  24.  
  25. --The actual infinite jump
  26. local plr = game:GetService('Players').LocalPlayer
  27. local m = plr:GetMouse()
  28. m.KeyDown:connect(function(k)
  29. if _G.infinjump then
  30. if k:byte() == 32 then
  31. humanoid = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass('Humanoid')
  32. humanoid:ChangeState('Jumping')
  33. wait()
  34. humanoid:ChangeState('Seated')
  35. end
  36. end
  37. end)
  38. end
Tags: #yourmother
Add Comment
Please, Sign In to add comment