Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to make my script taunt cooldown per inputkey?

Asked by 4 years ago
Edited 4 years ago

I want to make this code script cooldown because if it not cooldown it's gonna spam pose and if I put sound in it it's gonna spam sound

local UIS = game:GetService("UserInputService")
local plr = game.Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()


local key = 'F'

local Taunt = Instance.new("Animation")
Taunt.AnimationId = 'rbxassetid://3616396884' -- other animations 2262820217, 2262813409, 2425154387, 
local taunted = false

UIS.InputBegan:Connect(function(Input, IsTyping)
 if IsTyping then return end
 local KeyPressed = Input.KeyCode
 if KeyPressed == Enum.KeyCode[key] then
  taunted = true
  char.Humanoid.WalkSpeed = 0
  local LoadAnimation = char.Humanoid:LoadAnimation(Taunt)
  LoadAnimation:Play()
  wait(1.5)
  char.Humanoid.WalkSpeed = 16
  taunted = false
 end
end)

1 answer

Log in to vote
4
Answered by
oreoollie 649 Moderation Voter
4 years ago

It seems like you already almost have a debounce. Simply add if taunted then return end to the script, like this:

local UIS = game:GetService("UserInputService")
local plr = game.Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()


local key = 'F'

local Taunt = Instance.new("Animation")
Taunt.AnimationId = 'rbxassetid://3616396884' -- other animations 2262820217, 2262813409, 2425154387, 
local taunted = false

UIS.InputBegan:Connect(function(Input, IsTyping)
 if taunted then return end
 if IsTyping then return end
 local KeyPressed = Input.KeyCode
 if KeyPressed == Enum.KeyCode[key] then
  taunted = true
  char.Humanoid.WalkSpeed = 0
  local LoadAnimation = char.Humanoid:LoadAnimation(Taunt)
  LoadAnimation:Play()
  wait(1.5)
  char.Humanoid.WalkSpeed = 16
  taunted = false
 end
end)

If my answer solved your problem please don't forget to upvote and accept it. Thanks!

0
Thanks You ^^ Its Work! OrewaKamidaa 40 — 4y
Ad

Answer this question