Hello! How can you make it so that you only jump once until you release the jump button and at the same time have a cool down? I have no idea how that would work
01 | local us = game:GetService( "UserInputService" ) |
02 | local canJump = true |
03 |
04 | us.JumpRequest:Connect( function () |
05 | if canJump then |
06 | canJump = false game.Players.LocalPlayer.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, false ) |
07 | wait( 2 ) |
08 | canJump = true |
09 | game.Players.LocalPlayer.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, true ) |
10 | end |
11 | end ) |
UserInputService has an event which fires each tick when the spacebar is held down, called JumpRequest. Humanoids have a function which allows you to toggle certain controls, like jumping, climbing, walking, running, etc. Setting these to false disables that certain control. Using these, you can make a debounce variable as shown above.
Use the user input service to listen for the space key to be pressed and when the key is pressed change the jump power to however high you want it, wait a few seconds then change the jump power to zero. Don't forget to use debounce, debounce is the key to make the cool down.
You can make use of debounce. For example, I used the following script for my punch animation. Along with Debounce if you add a wait time after each jump like I have done in my script (for punch) then I think you are good to go.
01 | local Player = game.Players.LocalPlayer |
02 | local Character = Player.Character or script.Parent |
03 | local Humanoid = Character.Humanoid |
04 | local UserInputService = game:GetService( "UserInputService" ) |
05 |
06 | local AnimationID = "rbxassetid://4860770751" |
07 | local Debounce = true |
08 | local key = 'F' |
09 |
10 | UserInputService.InputBegan:Connect( function (Input, IsTyping) |
11 | if IsTyping then return end |
12 | if Input.KeyCode = = Enum.KeyCode [ key ] and Debounce = = true then |
13 | Debounce = false |
14 | local Animation = Instance.new( "Animation" ) |
15 | Animation.AnimationId = AnimationID |