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.
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.
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.
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)
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
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 ?
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.
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.
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.