forked from Simnation/Main
17 lines
216 B
Lua
17 lines
216 B
Lua
![]() |
function DrawText(text)
|
||
|
SendNUIMessage({
|
||
|
type = 'show',
|
||
|
text = text
|
||
|
})
|
||
|
end
|
||
|
|
||
|
exports('DrawText', DrawText)
|
||
|
|
||
|
function HideText()
|
||
|
SendNUIMessage({
|
||
|
type = 'hide'
|
||
|
})
|
||
|
end
|
||
|
|
||
|
exports('HideText', HideText)
|