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

32 lines
616 B
Lua
Raw Permalink Normal View History

2024-12-29 20:28:24 +00:00
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)