Adjusting the speed of an animation is just not working

I thought of the idea to make my pickaxe tools animation speed change depending on how quick you can swing the pickaxe. I then learned about the ‘Animator:AdjustSpeed()’ thing and tried using it. Even if I put in a 5 or a 0.1 in the parameter of it, the animation is still the same speed. I even made a quick new animation to see if my swing animation was bugged or something, but even the new animations speed wouldn’t change. Am I doing something wrong or is the AdjustSpeed method just not working?

if u can show your script that would be great but nevertheless, the :AdjustSpeed() method works fine for me.

just make sure you adjust the speed of the animation after you play it like this. it won’t work if you adjust the speed before you play the animation.

local AnimationTrack = Animator:LoadAnimation(Animation)
AnimationTrack:Play()
AnimationTrack:AdjustSpeed(50)
1 Like

Wow, thank you so much lol. I was putting it before I played the animation and then now I put it after playing it and it works.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.