How can you change the speed of the animation acceleration?
function onRunning(speed)
if speed > 0.01 then
playAnimation("walk", 1, Humanoid)
if currentAnimInstance and currentAnimInstance.AnimationId == "http://www.roblox.com/asset/?id=180426354" then
setAnimationSpeed(speed / 14.5)
end
pose = "Running"
else
if emoteNames[currentAnim] == nil then
playAnimation("idle", 0.6, Humanoid)
pose = "Standing"
end
end
end
If you wanted to make the walk animation accelerate faster change playAnimation("walk", 1, Humanoid)
→ playAnimation("walk", 0.5, Humanoid)
and playAnimation("walk", 1.5, Humanoid)
makes it slower, same thing for playAnimation("idle", 0.6, Humanoid)
2 Likes
Thanks m8
…