I’m trying to get all the animations that are playing on humanoid. I wonder if there is a way to get them other than the deprecated GetPlayingAnimationTracks. Any help is very appreciated!
It was moved, Animator:GetPlayingAnimationTracks()
is correct although it is not documented
local Animator = -- Animator instance
for _, AnimationTrack in pairs(Animator:GetPlayingAnimationTracks()) do
print(AnimationTrack.IsPlaying)
end
2 Likes
I don’t know if you know, but is there a way to know if its a roblox animation like run, walk, swim… etc.