Clothing — Client
OpenMenu
Opens the clothing/appearance customization menu.
Bridge.Clothing.OpenMenu()IsMale
Returns whether the player character is male.
local male = Bridge.Clothing.IsMale()
-- Returns: booleanGetAppearance
Returns the player’s current appearance data.
local appearance = Bridge.Clothing.GetAppearance()
-- Returns: tableSetAppearance
Applies appearance data to the player.
Bridge.Clothing.SetAppearance(appearance)| Parameter | Type | Description |
|---|---|---|
| appearance | table | Appearance data table |
RestoreAppearance
Restores the player’s saved appearance from the database.
Bridge.Clothing.RestoreAppearance()