> For the complete documentation index, see [llms.txt](https://docs.vames-store.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vames-store.com/assets/vms_housing/configuration-files/integration-files/clothing/client-side.md).

# Client-Side

{% tabs %}
{% tab title="vms\_clothestore" %}

```lua
if Config.Clothing ~= 'vms_clothestore' then
    return
end

function OpenWardrobe()
    exports['vms_clothestore']:OpenWardrobe()
end
```

{% endtab %}

{% tab title="qb-clothing" %}

```lua
if Config.Clothing ~= 'qb-clothing' then
    return
end

function OpenWardrobe()
    TriggerEvent('qb-clothing:client:openOutfitMenu')
end
```

{% endtab %}
{% endtabs %}
