Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Infinite Jump Script
- local Player = game.Players.LocalPlayer
- local UserInputService = game:GetService("UserInputService")
- UserInputService.JumpRequest:Connect(function()
- if Player.Character and Player.Character:FindFirstChild("Humanoid") then
- Player.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement