Hi, I encountered an issue where if I play an animation a second time, it will not stop, however it does when played once.
I did set .Looped to false, and I stop the animation with task.delay (Specifically after 11.6 seconds ( The duration ) )
local LoadAnimation=Humanoid:LoadAnimation(Animation)
LoadAnimation.Looped=false
LoadAnimation:Play()
taskdelay(11.666,function()
LoadAnimation:Stop()
end)
The animation is activated whenever someone fires .Chatted with a certain message.
Any help is appreciated, thanks!