Search results
21 kwi 2024 · You can just change the Humanoid.JumpPower to make a plr jump higher. If you want to make it look better, use Animations. For activating it with a Key, you can use UserInputService or if it should be a tool, you can use tool.Activated.
- How to change jump power/height
While making my game, I can’t find a way to change the...
- How to set player jump height
Hello, I am setting player height to 0 to disable jumping,...
- How to make a player jump
To make a specific player jump use this script: local...
- How to change jump power/height
27 lis 2022 · While making my game, I can’t find a way to change the player’s jump height. I read in the dev hub that jump power and jump height are read-only, but there must be some way to change them using scripts, right?
In this video, I will teach you how to add jump boost to your game in Roblox Studio!Link to Code:https://www.mrmichaelsclass.com/roblox-studio/scripting-exam...
4 sie 2023 · Hello, I am setting player height to 0 to disable jumping, however I eventually want to enable it again, I used. local jump = game.StarterPlayer.CharacterJumpHeight. jump = 7.2. wait (10) jump = 0.
2 lip 2024 · I know this is solved, but it seems to me like you are wanting not a charged jump, but to jump higher as you hold the space key. I would recommend the use of forces to achieve this without relying on changing the Humanoid properties.
7 sty 2021 · First you need to have a function to do all of the jumping action; Then you need to have to keep repeating inside the function until the character is grounded on a anchored object; Make sure to have the condition fire when the jump power isn’t hitting the max jump power and has to hold space for it to fire
21 cze 2021 · 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.