infinite jump script -- 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) infinite jump script