How to make a player jump

How can I make a player jump like forcing them?

10 Likes

You can use the .Jump property of the Humanoid, here’s a sample script:

game.Players.LocalPlayer.Character.Humanoid.Jump = true
27 Likes

if you tap the spacebar key you can jump

166 Likes

Thank you so much, god bless you

14 Likes

bumping this to express my happiness after reading this, thank you so much ItsNathanity.

13 Likes

ItsNathanity is one of gods angels. Truly an amazing helper.

16 Likes

Thank you ItsNathanity. That comment made me so happy!

17 Likes

I’m so happy I found this comment. I would of never been able to know without it. Thank you ItsNathanity <3

11 Likes

You are the best, Never knew how to jump until now, Now i need to know how to walk

13 Likes

Wow! Thanks for this so much, I’ve been wondering how other players were jumping for years now.

11 Likes

Thank you for your words of wisdom

7 Likes

finally someone tells me how to jump, I thought the other players were hacking! thank you, ItsNathanity.

7 Likes

This is the greatest thing i have seen in my life, thank you.

5 Likes

May god forever be with you. Never have gotten so much information before.

5 Likes

(Seems like everyone is answering to this reply so…)
You… you are the one that is gonna save the world… the progeny was right… the one… the one that would save us all… the one that would make us smarter… the one that would make Elon Musk feel stupid compared to him… it had always been @ItsNathanity… our hero…

5 Likes

Really no clue what I would do without this helpful comment.

1 Like

This is the reason he is a Game Designer… perfect!! :crazy_face:

2 Likes

Oh wow, I always thought that I had a pirated keyboard and people had normal keyboards, such helpful

1 Like

To make the localplayer jump use this script:

local LocalPlayer = game.Players.LocalPlayer
LocalPlayer.Character.Humanoid.Jump = true

To make a specific player jump use this script:

local ThePlayer = game.Players.[PlayerNameHere]
ThePlayer.Character.Humanoid.Jump = true

For the specific player jump script, make sure that you replace “[PlayerNameHere]” with the actual name of the player. Of course you can get the player from somewhere else as well like functions.

2 Likes

as a spacebar I can confirm this

2 Likes