How do I check if a Animation is playing?
3 Likes
If the Object/Instance is an AnimationTrack, Simply check it’s IsPlaying
Property.
-- Assuming you have the Animation...
if AnimationTrack.IsPlaying then
-- Do something...
end
23 Likes