> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_hotel/custom-wardrobe.md).

# Custom wardrobe

{% hint style="danger" %}
You must change config value OwnChangeroom to true or it will not work
{% endhint %}

1\) Go to config.lua

```lua
Config.OwnChangeroom = true
```

2\) Edit client/custom/wardrobe.lua

```lua
AddEventHandler(triggerName('openChangeroom'), function()
  --Code for open your skin menu
end)
```

### fivem-apperance example

```lua
AddEventHandler(triggerName('openChangeroom'), function()
    exports['fivem-appearance']:openWardrobe()
end)
```

### illenium-apperance example

```lua
AddEventHandler(triggerName('openChangeroom'), function()
    TriggerEvent("illenium-appearance:client:openOutfitMenu")
end)
```
