Hello! So i tried to add my game this custom walking animation script i found this site:
game.Players.PlayerAdded:connect(function(player)
while not player.Character do
wait()
end
local character = player.Character
local animateScript = character:WaitForChild("Animate") -- Some ':WaitForChild()s' just in case.
animateScript:WaitForChild("walk"):WaitForChild("WalkAnim").AnimationId = 'http://www.roblox.com/asset/?id=343061969'
end)
It worked very good, but when i reset and respawn i have normal animation back. Someone help?