Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Custon Walk animation not being used?

Asked by
Lagfss 36
1 year ago

So I'm trying to have Roblox play my custom walking animation for r15. And for some reason this code doesn't change the walking animation idk if there is a better way to do this for r15 or if this method of code only works for r6 any help is appreciated

game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function(character)
        player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=10739441994" 
    end)
end)

2 answers

Log in to vote
0
Answered by 1 year ago

I suggest putting an animation Local Script in StarterCharacterScripts and inputting your animation id. In the past, I inputted my ids in both the Local Script and the Animations Values. Here's the script: https://www.roblox.com/library/10752348286/Put-in-StarterCharacterScripts There is also many tutorials on changing the default walking animation.

Ad
Log in to vote
0
Answered by
imKirda 4491 Moderation Voter Community Moderator
1 year ago
player.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=10739441994"

i don't know for sure but WalkAnim is more for the slow walk (on phone or Xbox you can walk very slowly with joystick).

0
This worked on changing it!. But it still wont play I've made sure my walk animation is set to movement priority and I've double checked if it replaces the animationId which it does but it still plays the default walking animation Lagfss 36 — 1y

Answer this question