Basically the title. I want to stop all the animations that a humanoid is currently performing (including looped ones)
1 Like
You can get the player animation track from an animator here. Animator | Roblox Creator Documentation
2 Likes
referring to seancool07777:
for key, animation in pairs(Animator:GetPlayingAnimationTracks()) do
animation:Stop()
end
1 Like