Scripts/resources/[ps]/ps-ui/client/notify.lua

12 lines
303 B
Lua
Raw Normal View History

2024-12-29 20:28:24 +00:00
local function Notify(text, type, length)
type = type or 'primary'
length = length or 5000
SendNUIMessage({
notify = true,
text = text,
type = type,
length = length
})
end
exports('Notify', Notify)
RegisterNetEvent(("%s:Notify"):format(GetCurrentResourceName()), Notify)