Triggers and Exports
Some functions you can have other scripts use in the HUD.
DISPLAY
1. Display
-- Hide the HUD
exports['neon-hud']:Display(false)
-- Show the HUD
exports['neon-hud']:Display(true)2. GetDisplayState
-- Get current HUD visibility state (true = visible, false = hidden)
local isVisible = exports['neon-hud']:GetDisplayState()
print("HUD is visible:", isVisible)3. GetDisplayInfo
π’ Events
neon-hud:displayStateChanged
STRESS
Last updated