I have tried numerous times, to make a script where when an NPC's speed hits 0 it stops playing an animation, but all I got is when it goes to 0 it still plays. Its kind of annoying (Also would this work for a morph (StarterCharacter?) ) This is my script so far.
1 | --HurtSins 2019 |
2 |
3 | local hum = script.Parent:WaitForChild( "Zombie" ) |
4 | local anim = hum:LoadAnimation (script:FindFirstChildOfClass( "Animation" )) |
5 | anim.Looped = true |
6 | anim:Play() |