How to detect double inputs for jumping?

Hello, as the title suggests, I would like to find a to detect when the player has pressed the jump button two or more times. Currently I am using UserInputService.JumpRequest but found that the player can hold the jump action key to fire that event (rather than pressing the button individually).

Are there any other ways for detecting double inputs for jumping? I am trying to keep this cross-platform compatible so thats why I tried staying away from UserInputService.InputBegan.

2 Likes
local uis = game:GetService("UserInputService")
local player = game:GetService("Players").LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local doubleJump = false

uis.InputBegan:Connect(function(key, gp)
	if key.KeyCode == Enum.KeyCode.Space and not gp then
		if not doubleJump and humanoid:GetState() == Enum.HumanoidStateType.Freefall then
			doubleJump = true humanoid:ChangeState(Enum.HumanoidStateType.Jumping, true)
		end
	end
end)

humanoid.StateChanged:Connect(function(_, gp)
	if gp == Enum.HumanoidStateType.Landed then
		doubleJump = false
	end
end)

Well that was harder than it seemed at first.
Here is a version that actually double jumps.

2 Likes

Why is ljt necessary here? I don’t see any use for it

Edit : I did not see ljt = now since people don’t usually put code after the end statement like that

1 Like

I do that… Don’t like all that wasted space. :wink:
I actually script very cryptically so posting here is different for me.

1 Like

It doesn’t even work, it still prints Double Jump if ur holding space (pretty sure you get different results with different animations)

2 Likes

I had to get to my rig to test to be sure I’ll re-wright it.

1 Like

Bro I’m sorry but what is this bru. Also, by my knowledge, how would this fix the holding issue? Since I wanted separate jump inputs for the double input detection.

1 Like

I’ve tried using Enum.PlayerActions.CharacterJump for ContextActionService and it does technically work, but it does not work for mobile or console.

1 Like

Are you trying to create a double jump script ??

1 Like

I created a wall climbing/mantling system, but I would like to activate that functionality by a multi pressed input button (double tap the jump button)

1 Like

I feel like the only way through this is either a script that’s long an unnecessary or through UIS.InputBegan. For Mobile you can opt for registering the button itself like so:

local UIS = game:GetService("UserInputService")
local PlayerGui = game:GetService("Players").LocalPlayer.PlayerGui

function CheckDoubleJump()
	--Code Blah blah blah
end

if UIS.TouchEnabled then -- if a player is on mobile
	
	PlayerGui:WaitForChild("TouchGui").TouchControlFrame:WaitForChild("JumpButton").TouchTap:Connect(CheckDoubleJump)
	
elseif UIS.KeyboardEnabled then -- if the player is on a desktop

	UIS.InputBegan:Connect(function(Input, Processed)
		if Processed then return end
		if Input.KeyCode == Enum.KeyCode.Space then
			CheckDoubleJump()
		end
	end)
	
end

for consoles you can just use the same method

1 Like

Just for clarity, you would want the first time one presses the jump button nothing happens(not even a character jumping) but when the second press is made some few milliseconds after the game to activate the climbing feature ?

1 Like

I went over my script more than a few versions… The post now seems pretty tight and is working as you wanted. However, going deeper to combat hackers is proving to be difficult, as so much relies on being in a client script for the calls to be usable… It would be nice to see a better version of that.

No. The character should jump, then while falling they should be able to climb up the wall.

I’ve been kinda avoiding this but I can try doing this.

“as so much relies on being in a client script for the calls to be usable”, can you elaborate?

Many of those commands can only be used in a LocalScript.
My guess would be to use a Vector3 push on a timer with a Remote, checking the sender.
… sounds messy.

Hello, read this over again and I’m not worried about exploiters at all. Roblox has a good anti-cheat at the moment and this system I made is purely client side (besides sending over custom states). If a player cheats then so be it.

make a timer that ticks when humanoid’s ground material is air
reset that timer when it is not air

make a timer threshold that you want the double jump to be inputted by

override the jump so it doesnt do anything

catch when the player requests a jump using the humanoid and check if they are grounded or the timer is within the timer threshold

if these checks pass then you just applyimpulse to the characters rootpart

(this is all client btw)

EDIT:

reading the post again to prevent the holding issue add a variable to switch off the jump request temporarily and enable it somewhere else

I decided to completely disregard JumpRequest due to it’s holding nature and I am going to instead just use UserInputService or ContextActionService, I will provide an update once I finish with it.