I made a debounce for the animation but it isn’t working
Here is the Script:
local character = script.Parent
local Humanoid = character:WaitForChild(“Humanoid”)
local jumpAnim = Instance.new(“Animation”) – Accessing the animation
jumpAnim.AnimationId = “rbxassetid://13305253140” – Getting the Animation Id
local jumpAnimTrack = Humanoid:WaitForChild(“Animator”):LoadAnimation(jumpAnim) – Making a animation track, so the animation can be loaded onto the Character.
local Humanoid = character:WaitForChild(“Humanoid”)
local jumpAnim = Instance.new(“Animation”) – Accessing the animation
jumpAnim.AnimationId = “rbxassetid://13305253140” – Getting the Animation Id
local jumpAnimTrack = Humanoid:WaitForChild(“Animator”):LoadAnimation(jumpAnim) – Making a animation track, so the animation can be loaded onto the Character.