Issue
The emotes
key of the return value of Players:GetCharacterAppearanceInfoAsync() is not documented.
Missing from documentation of the asset tables are the keys currentVersionId
and meta
, but this may not be relevant to developers.
Reproduction
local players_service = game:GetService("Players")
players_service.PlayerAdded:Connect(function(player)
print(players_service:GetCharacterAppearanceInfoAsync(player.UserId))
end)