i want to speed up an animation but it gives me this:
here’s the function where there is the error:
function Chase(Player)
Idle:Stop()
Walk:Stop()
Charge:Play()
Charge.Speed = 3 -- the error is here
end
i want to speed up an animation but it gives me this:
here’s the function where there is the error:
function Chase(Player)
Idle:Stop()
Walk:Stop()
Charge:Play()
Charge.Speed = 3 -- the error is here
end
The property Speed is read only. This means you cannot change it directly.
AnimationTrack has a method AdjustSpeed which is used to modify the speed.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.