How can I make a player jump like forcing them?
You can use the .Jump property of the Humanoid, here’s a sample script:
game.Players.LocalPlayer.Character.Humanoid.Jump = true
if you tap the spacebar key you can jump
Thank you so much, god bless you
bumping this to express my happiness after reading this, thank you so much ItsNathanity.
ItsNathanity is one of gods angels. Truly an amazing helper.
Thank you ItsNathanity. That comment made me so happy!
I’m so happy I found this comment. I would of never been able to know without it. Thank you ItsNathanity <3
You are the best, Never knew how to jump until now, Now i need to know how to walk
Wow! Thanks for this so much, I’ve been wondering how other players were jumping for years now.
Thank you for your words of wisdom
finally someone tells me how to jump, I thought the other players were hacking! thank you, ItsNathanity.
This is the greatest thing i have seen in my life, thank you.
May god forever be with you. Never have gotten so much information before.
(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…
Really no clue what I would do without this helpful comment.
This is the reason he is a Game Designer… perfect!!
Oh wow, I always thought that I had a pirated keyboard and people had normal keyboards, such helpful
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.
as a spacebar I can confirm this