UI Bridges
Provides a unified API for handling DrawText UI and Notifications across multiple FiveM resources. Automatically routes to the appropriate underlying implementation based on what's active.
Accessing the Module
Server
drawtext.show(source, options)
Displays drawtext UI for a specific client.
Parameters
source
number
Player server ID
options
table
Drawtext options
â”” message
string
Text message to display
â”” icon
string
Optional icon (depends on system)
Example
drawtext.hide(source)
Hides drawtext UI for a specific client.
Parameters
source
number
Player server ID
Example
notifications.send(source, options)
Sends a notification to a specific client.
Parameters
source
number
Player server ID
options
table
Notification options
â”” type
string
Notification type (e.g., info)
â”” message
string
Notification message
â”” duration
number
Duration in ms
Example
Client
drawtext.show(options)
Displays drawtext UI locally on the client.
Parameters
options
table
Drawtext options
â”” message
string
Text message to display
â”” icon
string
Optional icon
Example
drawtext.hide()
Hides the drawtext UI locally on the client.
Example
notifications.send(options)
Displays a notification on the client.
Parameters
options
table
Notification options
â”” type
string
Notification type (e.g., success)
â”” message
string
Notification message
â”” duration
number
Duration in ms
Example
Last updated