Advertisement
RobloxNobScript

Roblox Universal Inf jump

Jan 19th, 2025 (edited)
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | Gaming | 0 0
  1. -- Infinite Jump Script
  2. local Player = game.Players.LocalPlayer
  3. local UserInputService = game:GetService("UserInputService")
  4.  
  5. UserInputService.JumpRequest:Connect(function()
  6. if Player.Character and Player.Character:FindFirstChild("Humanoid") then
  7. Player.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  8. end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement