Skip to main content
  • Instant digital delivery
  • Lifetime updates on selected products
  • Trusted by server owners
FiveMX
Shop
Full ServersBundlesNew releases
FiveMX

Start building your server today.

Curated FiveM resources, instant delivery, free starter mods, and practical guides in one calm marketplace.

Browse the shopsupport@fivemx.com

Shop

  • Shop
  • FiveM Mods
  • All Products
  • Free Mods
  • Best Scripts & Mods
  • FiveM Scripts

Frameworks

  • QBCore Scripts
  • ESX Scripts
  • QBox
  • Standalone

Community

  • Blog
  • Support
  • Creators
  • Affiliate

Legal

  • Privacy Policy
  • Terms of Service
  • Refund Policy
  • Digital Delivery
  • Cookie Policy
  • GDPR Compliance
  • DMCA
  • Imprint
  • Editorial Policy

Server Templates

  • QBCore Server Template
  • ESX Server Template
  • NoPixel Server Template
  • Server Packs
  • Free Server Templates
  • Tebex Alternative
© 2026 FiveMX. All rights reserved.·FiveMX is not affiliated with Rockstar Games, Take-Two Interactive, or CFX.re. All trademarks are property of their respective owners.
DiscordDocs
  1. Home
  2. Shop
  3. HUDs

7 product images available.

HUDs
Compatibility:
ESX

iNotificationV3

Review process
$11.49

Secure Checkout

Cards, Apple Pay, Google Pay, iDEAL/Wero, Bancontact, EPS, Przelewy24, and optional Crypto where available via Stripe.

Instant file access after paymentSupport and refund policy shown before checkout
Ask support before buyingRead refund policy
Instant Access
SSL Encrypted
Cards, wallets, bank redirects
Frameworksesx
Setup

Requires a FiveM server, ESX, access to server resources, and permission to restart the resource after configuration.

RequirementsPublished on this page
PreviewAvailable

Description

https://www.youtube.com/watch?v=gC2g8zfED68

? Installation of Notifications

  1. Drag the iNotificationV3 folder into your resources.
  2. Add the line ensure iNotificationV3 to your server.cfg.

? Text Options

  1. If you include ~h~ in text, it will make the text bold (example: ~h~Trying bold text~h~).
  2. If you include ~i~ in text, it will make the text italic (example: ~i~Trying italic text~i~).
  3. If you include
    in text, it will create a line break (example: line 1
    line 2
    ).

? Example Notifications (Client/Server)

Client Side

-- showNotification
TriggerEvent(iNotificationV3:showNotification, This is a message, 5, left);

-- showAdvancedNotification
TriggerEvent(iNotificationV3:showAdvancedNotification, Title, Subtitle, this is a message, CHAR_MP_BIKER_BOSS, 7, left);

-- showHelpNotification
TriggerEvent(iNotificationV3:showHelpNotification, Press ~INPUT_PICKUP~ to ..., 10, right);

-- showAdvancedHelpNotification
TriggerEvent(iNotificationV3:showAdvancedHelpNotification, Interactions, Press ~INPUT_PICKUP~ to trigger ..., CHAR_MP_BRUCIE, 8, left);

Server Side

-- showNotification
TriggerClientEvent(iNotificationV3:showNotification, source, This is a message, 5, left);

-- showAdvancedNotification
TriggerClientEvent(iNotificationV3:showAdvancedNotification, source, Title, Subtitle, this is a message, CHAR_MP_BIKER_BOSS, 7, left);

-- showHelpNotification
TriggerClientEvent(iNotificationV3:showHelpNotification, source, Press ~INPUT_PICKUP~ to ..., 10, right);

-- showAdvancedHelpNotification
TriggerClientEvent(iNotificationV3:showAdvancedHelpNotification, source, Interactions, Press ~INPUT_PICKUP~ to trigger ..., CHAR_MP_BRUCIE, 8, left);
⚠️ Tip: We recommend not modifying all your notifications through ESX. Instead, modify them individually within each script where they appear for better control (position, duration, etc.).

? Modify All Notifications in Your ESX Framework Easily

  1. Go to the folder ex_extended/client.
  2. Open the file functions.lua.
  3. Follow the modification steps below.

? Modification

Replace this code:
ESX.ShowNotification = function(msg)
    SetNotificationTextEntry('STRING');
    AddTextComponentString(msg);
    DrawNotification(0, 1);
end

ESX.ShowAdvancedNotification = function(sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
    if saveToBrief == nil then saveToBrief = true end
    AddTextEntry('esxAdvancedNotification', msg)
    BeginTextCommandThefeedPost('esxAdvancedNotification')
    if hudColorIndex then ThefeedNextPostBackgroundColor(hudColorIndex) end
    EndTextCommandThefeedPostMessagetext(textureDict, textureDict, false, iconType, sender, subject)
    EndTextCommandThefeedPostTicker(flash or false, saveToBrief)
end

ESX.ShowHelpNotification = function(msg, thisFrame, beep, duration)
    AddTextEntry('esxHelpNotification', msg)

    if thisFrame then
        DisplayHelpTextThisFrame('esxHelpNotification', false)
    else
        if beep == nil then beep = true end
        BeginTextCommandDisplayHelp('esxHelpNotification')
        EndTextCommandDisplayHelp(0, false, beep, duration or -1)
    end
end
With this code:
ESX.ShowNotification = function(msg, time, position)
    TriggerEvent(iNotificationV3:showNotification, msg, time or 12, position or left);
end

ESX.ShowAdvancedNotification = function(sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
    TriggerEvent(iNotificationV3:showAdvancedNotification, sender, subject, msg, textureDict, 12, left)
end

ESX.ShowHelpNotification = function(msg, thisFrame, beep, duration)
    TriggerEvent(iNotificationV3:showHelpNotification, msg, 12, left);
end

➕ Add Notifications Easily

showNotification

Client

-- message: string (message content) (⚠️ Required)
-- duration: number (seconds the notification stays visible) (❌ Optional)
-- location: string[left, middle, right] (screen position) (❌ Optional)
exports[iNotificationV3]:showNotification(message, duration, location);
-- or:
TriggerEvent(iNotificationV3:showNotification, message, duration, location);

Server

TriggerClientEvent(iNotificationV3:showNotification, playerId or source, message, duration, location)

showAdvancedNotification

Client

-- title: string (title of notification) (❌ Optional)
-- subtitle: string (subtitle) (❌ Optional)
-- message: string (message content) (⚠️ Required)
-- duration: number (display duration) (❌ Optional)
-- location: string[left, middle, right] (screen position) (❌ Optional)
-- icon: string (GTA 5 notification image or custom image name from assets/images/) (❌ Optional)

exports[iNotificationV3]:showAdvancedNotification(title, subtitle, message, icon, duration, location);
-- or:
TriggerEvent(iNotificationV3:showAdvancedNotification, title, subtitle, message, icon, duration, location);

Server

local inotif = iNotificationV3:showAdvancedNotification;
TriggerClientEvent(inotif, playerId or source, title, subtitle, message, icon, duration, location)

showHelpNotification

Client

exports[iNotificationV3]:showHelpNotification(message, duration, location);
-- or:
TriggerEvent(iNotificationV3:showHelpNotification, message, duration, location);

Server

local inotif = iNotificationV3:showHelpNotification;
TriggerClientEvent(inotif, playerId or source, message, duration, location)

showAdvancedHelpNotification (Preview)

Client

exports[iNotificationV3]:showAdvancedHelpNotification(title, message, icon, duration, location);
-- or:
TriggerEvent(iNotificationV3:showAdvancedHelpNotification, title, message, icon, duration, location);

Server

local inotif = iNotificationV3:showAdvancedHelpNotification;
TriggerClientEvent(inotif, playerId or source, title, message, icon, duration, location)

✅ Done! Your file has now been fully translated into English while preserving code blocks and formatting. Would you like me to generate an English-markdown version of this file (readme_en.md) that you can download?

Buy this when it saves setup time

Use this checklist to decide quickly whether the resource fits your current server build, framework, and support expectations.

Server-owner payoff

iNotificationV3 is positioned to reduce HUDs instead of making you rebuild the same system from scratch.

Compatibility

Works with esx. Check the requirements block before adding it to a live stack.

Purchase confidence

Instant download, Stripe checkout, support access, and refund policy context are shown before payment.

Decision assets

Requirements, Preview video, Product Q&A

Product fit, setup, and proof at a glance

Use the published facts on this page to confirm whether iNotificationV3 matches your server before checkout.

Compatibility

Frameworks
ESX
Category
HUDs

Setup & requirements

Install flow
Download → resources folder → ensure in server.cfg
Requirements
Published on this page
File size
1.5 MB

Proof & buyer questions

Reviews
No reviews yet
Answered Q&A
Ask before buying

Only the facts published on this page should be treated as confirmed. If you need more detail, review the description, requirements, changelog, reviews, and product Q&A before checkout.

Compatibility:

iNotificationV3

$11.49

Secure Checkout

Cards, Apple Pay, Google Pay, iDEAL/Wero, Bancontact, EPS, Przelewy24, and optional Crypto where available via Stripe.

Instant file access after paymentSupport and refund policy shown before checkout
Ask support before buyingRead refund policy
Instant Access
SSL Encrypted
Cards, wallets, bank redirects
Frameworksesx
Setup

Requires a FiveM server, ESX, access to server resources, and permission to restart the resource after configuration.

RequirementsPublished on this page
PreviewAvailable

Installation notes

Requires a FiveM server, ESX, access to server resources, and permission to restart the resource after configuration.
Installation notes
Requires a FiveM server, ESX, access to server resources, and permission to restart the resource after configuration.
Description
Requirements
Preview video

Key Features

  • Four notification types

    Supports showNotification, showAdvancedNotification, showHelpNotification, and showAdvancedHelpNotification for varied notification displays.

  • Configurable display duration

    Set how many seconds each notification stays visible on screen with optional duration parameters.

  • Three screen positions

    Display notifications at left, middle, or right positions on the screen.

  • Text formatting options

    Use ~h~ for bold text, ~i~ for italic text, and <br/> tags to create line breaks within notifications.

  • GTA 5 icon and custom image support

    Display notifications with GTA 5 notification images or custom image names from the assets/images/ folder.

Frequently Asked Questions

HUDs
ESX
Review process

Related Products

$6.99
$4.49
$7.49
$4.49

Related Tutorials & Guides

Learn more about setting up, configuring, and using this type of resource.

ESX Admin Commands — Complete 2026 Reference

ESX Admin Commands — Complete 2026 Reference

A practical ESX admin command list for FiveM servers: all user commands, admin commands, aliases, arguments, examples, and permission notes for es_extended.

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

Choosing a framework is the single most consequential decision when building a FiveM server. It determines which scripts you can use, how your developers write code, the…

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX is the original FiveM roleplay framework, and despite newer alternatives, it remains one of the most widely used frameworks in 2026.

Continue Building Your FiveM Server

Use this product as part of a larger setup. Explore related categories, alternative frameworks, premium bundles, and free companion downloads.

Explore Phone ScriptsExplore Inventory ScriptsBrowse all scriptsHUDs scriptsesx scriptsTry QBCore insteadTry QBox insteadFree FiveM modsCompare bundles
Premium Vehicle HUD

Premium Vehicle HUD

Simple ESX HUD

Simple ESX HUD

Circle HUD

Circle HUD

HUD Coords

HUD Coords