Hello,
I have an animation which is working fine. But I need a way to play the animation and when the animation finishes the animation freezes wait 3 seconds and after that continue with the normal Roblox animations.
How do I make the animation play then pauze and then stop? I have been reading the Animations wiki but I just don't get how I would create what I want to make. For now this is all I have
local animation = Instance.new("Animation") animation.AnimationId = "http://www.roblox.com/Asset?ID=320047412" local animTrack = Character.Humanoid:LoadAnimation(animation) animTrack:Play()