Advertisement
FazeWolfyBoy

INF jump

Mar 26th, 2022
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "INF Jump";
  3. Text = "Press Or Hold Space";
  4. })
  5. local InfiniteJumpEnabled = true
  6. game:GetService("UserInputService").JumpRequest:connect(function()
  7. if InfiniteJumpEnabled then
  8. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement