Roblox Emote IDs

So I am trying to find the animation ID for the default Roblox emotes. How do I find these? And how do I find the animation IDs for the other emotes on the catalog. Sorry I didn’t know what category to put this under.

2 Likes

The animation ID can be found in the URL bar of the animation page:

Screenshot_14

For loading them into studio do game:GetService("InsertService"):LoadAsset(AnimationId).Parent = --Where you want it to go. (It will be inside a Model)

9 Likes
  • Head to ROBLOX Studio

  • Click Play to play the simulation inside your game

  • Copy the “Animate” script from inside your Character, and put it in StarterCharacterScripts

  • Click Stop to stop the simulation

  • Open up the “Animate” script, you should see all of the Animation ID’s possible

	wave = {
				{ id = "http://www.roblox.com/asset/?id=128777973", weight = 10 } 
			},
	point = {
				{ id = "http://www.roblox.com/asset/?id=128853357", weight = 10 } 
			},
	dance1 = {
				{ id = "http://www.roblox.com/asset/?id=182435998", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491037", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491065", weight = 10 } 
			},
	dance2 = {
				{ id = "http://www.roblox.com/asset/?id=182436842", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491248", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491277", weight = 10 } 
			},
	dance3 = {
				{ id = "http://www.roblox.com/asset/?id=182436935", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491368", weight = 10 }, 
				{ id = "http://www.roblox.com/asset/?id=182491423", weight = 10 } 
			},
	laugh = {
				{ id = "http://www.roblox.com/asset/?id=129423131", weight = 10 } 
			},
	cheer = {
				{ id = "http://www.roblox.com/asset/?id=129423030", weight = 10 } 
			},
  • Change the ID’s to whatever you want to replace

  • Play the simulation again, the “Animate” script you inserted should override the default, and will check if your Animation will work when typing /e dance

10 Likes