Cant get the animation name

I’m having a little problem here, when i use “GetPlayingAnimationTracks()”, all i get in output is “Animation” and “Animation1”, but i want the name of the animation. My script:

function Duck()    
local NewTrack = user.Character.Humanoid:GetPlayingAnimationTracks()
for i, v in pairs(NewTrack) do
        print(V)
    end
end

while true do
wait(1)
Duck()
end
1 Like

for i, v in pairs(NewTrack) do
print(v.Name)
end

This worked for me.