Free Resourcesfilo_textui
HideText
Hide the 2D bottom bar prompt.
Hides the bottom bar and stops the key-press polling thread.
Signature
exports.filo_textui:HideText()Example
local insideZone = false
-- On zone enter
exports.filo_textui:DrawText({ options = { { key = 'E', label = 'Interact' } } })
insideZone = true
-- On zone exit
if insideZone then
exports.filo_textui:HideText()
insideZone = false
end