Scripts/resources/[ps]/ps-ui/client/display.lua
2024-12-29 21:28:24 +01:00

32 lines
616 B
Lua

local Text = ""
local Color = "primary"
exports("DisplayText", function(text, color)
if text == nil then Text = "" else Text = text end
if color == nil then Color = "primary" else Color = color end
SendNUIMessage({
action = "display",
text = Text,
color = Color,
})
end)
exports("HideText", function()
Text = ""
Color = "primary"
SendNUIMessage({
action = "hide",
})
end)
exports("UpdateText", function(text)
if text == nil then Text = "" else Text = text end
SendNUIMessage({
action = "update",
text = Text,
})
end)