1
0
Fork 0
forked from Simnation/Main
Main/resources/[carscripts]/jg-textui/client.lua
2025-08-04 20:32:58 +02:00

16 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)