I want the animation of “walking” to slow down by 0.5, but this animation is inside “Animate” and I do not know what to do, can someone help?
2 Likes
you’ll have to go a look for stuff in the animated script then
something like this would work if you do manage to find what you’re looking for
animation.Loaded:Connect(function()
animation.AnimationSpeed = 0.5
end)
1 Like
function onRunning(speed)
speed /= getRigScale()
if speed > 0.01 then
playAnimation("walk", 0.1, Humanoid)
if currentAnimInstance and currentAnimInstance.AnimationId == "http://www.roblox.com/asset/?id=180426354" then
setAnimationSpeed(0.5)
end
pose = "Running"
else
if emoteNames[currentAnim] == nil then
playAnimation("idle", 0.1, Humanoid)
pose = "Standing"
end
end
end
Here’s what I found but how could I change the speed here? or is it not what you need
changing these numbers should surfice
play around and test