Scripts/resources/[standalone]/cd_drawtextui/client/main.lua
2024-12-29 21:02:20 +01:00

15 lines
303 B
Lua

RegisterNetEvent('cd_drawtextui:ShowUI')
AddEventHandler('cd_drawtextui:ShowUI', function(action, text)
SendNUIMessage({
action = action,
text = text,
})
end)
RegisterNetEvent('cd_drawtextui:HideUI')
AddEventHandler('cd_drawtextui:HideUI', function()
SendNUIMessage({
action = 'hide'
})
end)