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 do i make hold a space key to jump higher - Scripting ... - Roblox
Here’s a code sample on how to do that. You’ll need 2...
- How to make a player jump - Scripting Support - Roblox
To make a specific player jump use this script: local...
- How do i make hold a space key to jump higher - Scripting ... - Roblox
2 lip 2024 · Here’s a code sample on how to do that. You’ll need 2 scripts: a Local script under starter character script: local UserInputService = game:GetService("UserInputService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local chargeJumpEvent = ReplicatedStorage:WaitForChild("ChargeJumpEvent") local player = game.Players ...
Here:script.Parent.Equipped:Connect (function () local Humanoid = script.Parent.Parent:FindFirstChild ("Humanoid") Humanoid.JumpPower = 200 script.Parent.Unequi...
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.
Allow you to infinite jump in any roblox game! Contribute to Mirgarr/Infinite-jump-script-roblox development by creating an account on GitHub.
Make a +1 Jump Height Every Second Game | ROBLOX Studio Scripting Tutorial - YouTube. Reactive Metal. 4.99K subscribers. Subscribed. 63. 2.9K views 10 months ago. Note: This videos requires...
23 lis 2022 · local MainSection = Main:NewSection ("Main") MainSection:NewSlider ("Speed", "makes you go fast", 200, 16, function (s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s. end) MainSection:NewButton ("Infinite Jump", "Jump as high as you want", function () -- by isaraw8912.