I want to ask if is it possible to stop a looping animation track on the server side because when I try to stop the animation, it still looping.
Thank you
I want to ask if is it possible to stop a looping animation track on the server side because when I try to stop the animation, it still looping.
Thank you
Did you forget to turn off Looping for the animation?
else you can use
AnimationTrack:Stop() or AnimationTrack.Looped = false
I’ve had the same problem as you before, and I solved it using this :
AnimationTrack.DidLoop:Wait()
AnimationTrack:Stop()
For some reason, I think that you can’t change Looped properties of animation on the server, so I tried this and it worked for me, hopefully it does for you too.