uiConfig = {
position = "bottom",
defaultcolor = "#4d0dff"
}
Example
your-client.lua
local shown = false
local inDistance = false
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
inDistance = false
local coords = GetEntityCoords(PlayerPedId())
local distance = #(coords - vector3(-457.753845, -670.588989, 32.093750))
DrawMarker(3, -457.753845, -670.588989, 32.093750, 0.0, 0.0, 0.0, 0.0, 180.0, 0.0, 1.0, 1.0, 1.0, 50, 50, 255, 90, false, true, 2, nil, nil, false)
if distance <= 1 then
inDistance = true
-- Your Code Goes Here
else
inDistance = false
-- Your Code Goes Here
end
if not shown and inDistance then
exports.cx_textui:Open(
"TAB",
"OPEN MENU",
"#fff",
"bottom"
)
shown = true
elseif shown and not inDistance then
exports.cx_textui:Close()
shown = false
end
end
end)