I am trying to change speed of an animation, but it just doesn't work. Here is the script:
local animTrack = player.Character.Humanoid:LoadAnimation(animation) local speed = animTrack.Length / duration animTrack:AdjustSpeed(5) animTrack:Play()
The speed of the animation is always 1. This code block is in LocalScript.