Animation ID Navigation Help

Where can I find a list of animations, and the ID of the animation? I’m trying to input a walk animation (R6), but I don’t know where to find the animation ID for certain animations…

Script Below

game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(character)
player.Character.Animate.walk.WalkAnim.AnimationId = “http://www.roblox.com/asset/?id=MyID” – Animation ID (where I’m confused)
end)
end)

Left in workspace.

I believe that if you run in studio the animation for the default character are loaded so you should be able to find out what you want from the explorer.

1 Like

There is a animate script inside the player, it’s only visible in run mode, play mode or server mode, you should go to run mode in studio, select the character you are controlling like the default roblox rig, go inside and look for a localscript named “Animate”, you could copy the script, not the code of it.

After that stop run mode and paste it in the startercharacterscripts, you can look inside the code now, you’ll be welcomed by some functions, variables and stuff. There is a table for the animations that you could view, those table contain walk animation, idle animation 1 & 2, climbing animation, jumping animation, falling animation, holding tool animation, etc. The green highlighted text is the animation id that you can write your animation id to, the “rbxasset” or “https” stuff is important for loading the animation.

Hope i helped, don’t forget to change some stuff in the script if you have a different player character!