filo studios.
Free Resourcesfilo_textui

IsTextVisible

Check whether a 3D label is currently active.

Returns true if a 3D label spawned by the calling resource is currently active.

Signature

local visible = exports.filo_textui:IsTextVisible()

Returns

TypeDescription
booleantrue if a label is active, false otherwise.

Example

if not exports.filo_textui:IsTextVisible() then
    exports.filo_textui:DrawText3D({
        entity  = entityId,
        options = { { key = 'E', label = 'Interact' } },
    })
end

On this page