Animation is not pausing

I want to pause an animation which then stays in position until the animation is destroyed.

I have tried functions such as :Stop and it doesn’t work.

local anim = plr.Character.Humanoid:LoadAnimation(game.ReplicatedStorage.Animations.Drag)
anim:Play()
wait(0.5)
anim:Stop()

https://gyazo.com/2eec71e7f1ac5b223a45bf2e1efb8a3c

I want it to stay in this position a show above.

Any help would be great, thanks.

1 Like

You can freeze the animation by setting adjustspeed to zero
anim:AdjustSpeed(0)

Yeah I tried that, it didn’t work.

Just loop your animation.

local anim = plr.Character.Humanoid:LoadAnimation(game.ReplicatedStorage.Animations.Drag)
anim.Looped = true
anim:Play()
1 Like