Reversing an animation

Hello fellow scripters. I am looking for a script/plugin that can reverse an animation.
Thanks.

If you just want to reverse an animation inside a script it can be done when you play the animation like:

local animation = Instance.new("Animation")
local animationId = 000000000 --whatever ur animation id is
animation.AnimationId = "rbxassetid://" ..animationId
local AnimationTrack = Humanoid:LoadAnimation(animation)
AnimationTrack:Play(0.100000001, 1, -1)
-- 0.100000001 is length (default)
-- 1 is weight (default)
-- -1 is the playback speed. -1 means it will reverse
4 Likes

Is there a way to like reverse the key frames?

Well if you are talking inside an animation editor, I’m afraid there are none that I know of. You can try searching and you might find something that fulfills your needs. (I’m a noob at animation so yes)
One way can be just to copy-paste the keyframes in the opposite order.

1 Like

Okay, thank you for you’re reply. I will try doing that

3 Likes