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)
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.
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).