Avatar Emotes¶
Time:opt-in
In addition to the default articles/Lua Chat System|chat
and opt-in articles/Avatar Context Menu|Avatar Context Menu
, Roblox players can express what they’re feeling through emotes.
Uh oh! Your browser doesn’t appear to support embedded videos! Here is a direct link to the video instead.
Depending on the platform, the emote menu can be opened as follows:
Platform Method
PC / Mobile Click/tap the
button from the top menu bar.
Console Access it from the radial menu.
Playing Emotes¶
To explicitly play an emote that a character has in its HumanoidDescription
, call the Humanoid/PlayEmote|Humanoid:PlayEmote()
API, passing the string name of the emote. This call will return true
to indicate that the emote was played successfully, or false
otherwise.
local Players = game:GetService("Players")
local humanoid = Players.LocalPlayer.Character.Humanoid
humanoid:PlayEmote("Shrug")
***Roblox官方链接:Avatar Emotes