hilol124

inf jumps (in a cool way)

Feb 26th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | Gaming | 0 0
  1. -- Thingy for random stuff like notifications
  2. local StarterGui = game:GetService("StarterGui")
  3. InfiniteJumpEnabled = true
  4. game:GetService("UserInputService").JumpRequest:connect(
  5. function()
  6. if InfiniteJumpEnabled then
  7. game:GetService "Players".LocalPlayer.Character:FindFirstChildOfClass "Humanoid":ChangeState("Jumping")
  8. end
  9. end
  10. ) -- I might add a toggle for this soon
  11.  
  12. -- Lil notification for when the script loads
  13. StarterGui:SetCore(
  14. "SendNotification",
  15. {
  16. Title = "Infinite Jump loaded!",
  17. Text = "Happy exploiting!",
  18. Duration = 3
  19. }
  20. )-- Thingy for random stuff like notifications
  21. local StarterGui = game:GetService("StarterGui")
  22. InfiniteJumpEnabled = true
  23. game:GetService("UserInputService").JumpRequest:connect(
  24. function()
  25. if InfiniteJumpEnabled then
  26. game:GetService "Players".LocalPlayer.Character:FindFirstChildOfClass "Humanoid":ChangeState("Jumping")
  27. end
  28. end
  29. ) -- I might add a toggle for this soon
  30.  
  31. -- Lil notification for when the script loads
  32. StarterGui:SetCore(
  33. "SendNotification",
  34. {
  35. Title = "Loaded! follow fiero0911 on roblox!",
  36. Text = "inf jumps in a cool way",
  37. Duration = 3
  38. }
  39. )
Add Comment
Please, Sign In to add comment