CharacterAppearance (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
No edit summary
>Camoy
No edit summary
Line 1: Line 1:
{{CatUp|Properties}}
<onlyinclude>{{Property
<onlyinclude>{{Property
|name = CharacterAppearance
|name = CharacterAppearance
|property = [[String|Content]] ''characterAppearance''
|property = [[Content]] ''characterAppearance''
|description = URI of the asset containing character's appearance, clothing, and gear.
|description = URI of the asset containing character's appearance, clothing, and gear.
|object = Player
|object = Player
Line 19: Line 17:
game.Players.PlayerAdded:connect(onPlayerAdded)
game.Players.PlayerAdded:connect(onPlayerAdded)
</pre>}}
</pre>}}
== See Also ==
[[PlayerAdded]]


[[Category:Properties]]
[[Category:Properties]]

Revision as of 16:18, 29 January 2011

CharacterAppearance
Property Content characterAppearance
Description URI of the asset containing character's appearance, clothing, and gear.
Member of Player


Description

This property is automatically set by Roblox when player joins.

Example
function onPlayerAdded(player)
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
end
game.Players.PlayerAdded:connect(onPlayerAdded)