Play Animation backwards not working?

  1. What do you want to achieve? Keep it simple and clear!
    I want to play an existing animation backwards
  2. What is the issue? Include screenshots / videos if possible!
    AnimationTrack:AdjustSpeed(-1) isn’t reversing the animation and instead plays normally but not backwards
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    only AnimationTrack:AdjustSpeed(-1)
11 Likes

The problem was that AnimationTrack:Play() changes the speed to default 1.
So I directly set it with AnimationTrack:Play(0.100000001, 1, -1)

0.100000001 - Length (Default)
1 (Weight)
-1 (Speed)

31 Likes