roblox idle animation script -- Only change the "YourId" B) game.Players.PlayerAdded:connect(function(player) while not player.Character do wait() end local character = player.Character local animateScript = character.Animate animateScript.idle.Animation1.AnimationId = 'http://www.roblox.com/asset/?id=YourId' -- Change YourId with an animation that you want the player to use when not moving. end) roblox idle animation script