-- You can use this event to display the character creation menu for new character.
-- You can use 'crm-male' or 'crm-female'.
TriggerEvent('crm-appearance:init-new-character', 'crm-male', function()
-- execute something after play click save appearance button.
end)
-- You can use this event to display the character outfits menu!
-- You can use in your apartment/housing script!
TriggerEvent('crm-appearance:show-outfits')
-- You can use this event to display the character creator menu!
TriggerEvent("crm-appearance:show-creator-menu")
-- You can use this event to laod player skin!
TriggerEvent("crm-appearance:load-player-skin")
-- You can use this event to display the store clothing menu!
TriggerEvent("crm-appearance:show-clothing-menu")
-- You can use this event to display the barbershop menu!
TriggerEvent("crm-appearance:show-barber-menu")
-- You can use this event to display the plasticsurgery menu!
TriggerEvent("crm-appearance:show-plasticsurgery-menu")
-- You can use this event to display the job outfits menu!
TriggerEvent('crm-appearance:show-job-outfits', 'police')
3. Multicharacter Export
-- You can use this export to set the ped appearance!
local crm_ped = your_ped -- change your_ped with your ped variable name.
local crm_skin = json.decode(your_skin_table) -- change your_skin_table with skin variable name.
exports['crm-appearance']:crm_set_ped_appearance(crm_ped, crm_skin)