How to make a player jump

How can I make a player jump like forcing them?

1 Like

You can make a player jump by changing their HumanoidStateType to Jumping.

Code Sample:
Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)

3 Likes

Another option is to just set the Jump boolean under the Humanoid to true to make them jump.

3 Likes

THX !

2 Likes