πŸ—ƒοΈExports & Commands

Find every detail of the modern FiveM hud where you will be able to apply code completely programmed by us in a fast and accessible way through simple exports and commands that we have created.

They work exactly the same for both frameworks. Everything only on the client side.

1. Toggle HUD

Also with /toghud command in chat.

exports["jgs-hud"]:showHUD()
exports["jgs-hud"]:hideHUD()

2. Seatbelt

Available through the seatbelt command or in the key (default) β€œB”.

3. Notifications

exports["jgs-hud"]:AddNotify(text, type, title, icon, boxColor, titleColor)
TriggerEvent('jgs:notification', text, type, title, icon, boxColor, titleColor)

4. Progressbar

Type: 'bar' | 'circle' Timeouts: in milliseconds Cb: Function to be executed

exports["jgs-hud"]:addProgress(type, text, timeouts, cb)

5. Text UI

exports["jgs-hud"]:CreateHelp(key, text)
exports["jgs-hud"]:ShowHelp(key, text)
exports["jgs-hud"]:RemoveHelp(id)

Example of Usage

Last updated

Was this helpful?