T
The Daily Insight

How to double jump in roblox

Author

James Bradley

Published Apr 09, 2026

A simple way to implement double jump is to force the character back into the Jumping state. We can also listen to when the state changes back to Landed to prevent the character from double jumping more than once. You can use Humanoid/ChangeState to force the character back into the jumping state in order to cause the double jump.

There are other answers below:

#RobloxStudioDoubleJumpIn this video I show you how to add double jumping into your Roblox Studio games by using a script found on the Roblox Developer Websi…

Double Jumping You can use Humanoid:ChangeState to force the character back into the jumping state in order to cause the double jump. To make the player’s character double jump you will also need to know when the player pressed the jump input.

How To DOUBLE Jump | Roblox fps unlockerfps unlocker :

You’ll see that right away if you go ahead and press space bar twice it’ll double jump! Having double jumps in an obby game is really useful! You know to have if any of your obstacle courses area bit too hard and make it a little easier for gamers!

Sprint (press and move Left Stick), hit A to jump, then Left Bumper while in the air to dive. Hopefully you’ll double jump if it’s timed correctly. Hopefully you’ll double jump if …

When gears are within a player’s backpack, the user can press the number key associated with that gear while holding the space bar in order to jump multiple times in a row. It can also be done with the use of user-created gears and motorcycle gears. This glitch can sometimes benefit the users by the use of double jumping.

local DOUBLE_JUMP_POWER_MULTIPLIER = 1 — Put jump force here it doubl the old jump ex if your old jump is 20 it will double it

Related Questions

How do I implement double jumping in Roblox?

Double jumping is a feature that appears in many games. This tutorial will cover how to implement it in Roblox. To get started, you will need to insert a LocalScript into StarterPlayerScripts. You can name it whatever you want, but you should name it something descriptive so you can find it quickly if you need to.

How do you force a character to double jump?

A simple way to implement double jump is to force the character back into the Jumping state. We can also listen to when the state changes back to Landed to prevent the character from double jumping more than once. You can use Humanoid/ChangeState to force the character back into the jumping state in order to cause the double jump.

How do I make double jumping more fun?

Double jumping is a useful mechanic to add depth to your game. There are some things that you might want to tweak, such as TIME_BETWEEN_JUMPS and DOUBLE_JUMP_POWER_MULTIPLIER, to change how long after the first jump a player must wait before double jumping or the power of the double jump respectively.

What happens when you jump in Roblox?

When a player jumps, the state of their humanoid is set to Jumping, which applies an upwards force to the character model. A brief moment later, the humanoid is set to the Freefall state, which lets physics take over and pull the character back to the ground with gravity.