I want to know how to play an animation after another animation is playing because I want to make animated wrestling moves like this https://youtu.be/QA5Oi5AdsLs I wanna make it like that and want to make my arena better.
2 Likes
You can use the stopped event that is fired by Animations to trigger one animation after another.
For example:
Animation1:Play()
Animation1.Stopped:wait()
Animation2:Play()
4 Likes