ðŸ“ĶHide / Open Another UI'S

Read this article to hide the interfaces of other scripts

There are some functions that work when the multicaracter is switched on or off. You can access them from the Config file.

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

Last updated