Doesn't print what i want to do when animation stops

local hum = script.Parent:WaitForChild(“Humanoid”)

local animTrack = hum:LoadAnimation(script:WaitForChild(“Animation”))

while wait(1) do

animTrack:Play()

print(“Animation is playing”)

animTrack:Stop()

animTrack.Stopped:Wait()

print(“It stopped”)

end

This is my first time posting a forum sorry

I don’t think you need to use this? Since when you use the Stop function it stops instantly.

1 Like

I need it from something i’ve been working on, And i just added a slight delay now it’s working

1 Like