⚙️Usage

Detailed explanation of the config file to adapt the resource to your player needs.

TASK UI
  • If you want to use the task ui to hide after 3 seconds for example :

    local Data = {
        title = 'TITLE HERE', 
        txt = 'MESSAGE HERE\nANOTHER MESSAGE HERE'
    }
    exports['zat-ui']:ShowTBUi(Data, 3000)
  • If you want to use the task ui and hide it later:

    local Data = {
        title = 'TITLE HERE', 
        txt = 'MESSAGE HERE\nANOTHER MESSAGE HERE'
    }
    exports['zat-ui']:ShowTBUi(Data)
    exports['zat-ui']:hideUI()

Last updated