# Hide / Open Another UI'S

{% hint style="info" %}
There are some functions that work when the multicaracter is switched on or off. You can access them from the Config file.
{% endhint %}

```lua
Config.OpenUIs = function()
    -- You can reopen closed UIs from here with export or trigger again
   TriggerEvent('wais:hideHud', false)
end

Config.CloseUIs = function()
    -- You can close UIs that you do not want to appear on the screen with export or trigger here
    TriggerEvent('wais:hideHud', true)
end
```
