mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
15 lines
275 B
Lua
15 lines
275 B
Lua
|
|
function lib.showTextUI(text, options)
|
||
|
|
if not options then options = {} end
|
||
|
|
options.text = text
|
||
|
|
SendNUIMessage({
|
||
|
|
action = 'textUi',
|
||
|
|
data = options
|
||
|
|
})
|
||
|
|
end
|
||
|
|
|
||
|
|
function lib.hideTextUI()
|
||
|
|
SendNUIMessage({
|
||
|
|
action = 'textUiHide'
|
||
|
|
})
|
||
|
|
end
|