Animation Loop Help

  1. What do you want to achieve? Animation without loop

  2. What is the issue? Watch Roblox Studio 2025.12.01 - 02.33.28.09 | Streamable

  3. What solutions have you tried so far? No

Hey, I’m interested in the “/Dead” animation. I’d like the character to stay on the ground when they fall. However, the animation resets and after the animation ends, it reverts to the standard “Idle” animation from Roblox. Does anyone know how to fix this?

1 Like

Maybe set the animation’s speed to 0 when it reaches the point. Use animation events to mark the moment on where it should pause the animation.

2 Likes

Make sure to set animation to the last frame aswell:

Animation.Ended:Once(function():()

Animation:AdjustSpeed(0)
Animation.TimePosition = Animation.Length

end)