Hello, does anyone know how to tween an animation speed?
local Humanoid = script.Parent:WaitForChild("Humanoid")
local Animation = Humanoid:LoadAnimation(script:WaitForChild("TrainMove"))
wait(2)
Animation:Play()
Animation:AdjustSpeed(1)
wait(7)
Animation:AdjustSpeed(0)
i want it to smoothly Slow down instead of instantly slowing down?