HD-Notify
π HD-Notify
Advanced Notification System for FiveM
A modern, customizable notification system for FiveM servers featuring multiple themes, configurable positioning, and smooth animations.
Show Image Show Image Show Image
β¨ Features
- π¨ 3 Beautiful Themes: Modern, Minimalist, and Gaming
- π 9 Position Options: Place notifications anywhere on screen
- π 4 Notification Types: Success, Error, Warning, Info
- β‘ Smooth Animations: Slide-in effects with progress bars
- π§ Easy Configuration: Simple config file setup
- π± Responsive Design: Works on all screen sizes
- π Sound Effects: Optional notification sounds
- π Performance Optimized: Lightweight and efficient
- π Auto Cleanup: Prevents notification spam
πΌοΈ Screenshots
Modern Theme

Minimalist Theme

Gaming Theme

Available Positions
top-left/top-center/top-rightcenter-left/center-center/center-rightbottom-left/bottom-center/bottom-right
Available Themes
| Theme | Description |
|---|---|
modern | Dark glassmorphism design with sleek borders |
minimalist | Clean, light design with subtle shadows |
gaming | Futuristic dark theme with neon glowing effects |
π Usage
Basic Export Function
lua
exports['hd-notify']:SendNotify(title, message, type, duration)Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | β | Notification title |
message | string | β | Notification message |
type | string | β | Notification type (success, error, warning, info) |
duration | number | β | Duration in milliseconds |
Examples
lua
-- Success notification
exports['hd-notify']:SendNotify('Welcome!', 'You have joined the server', 'success', 3000)
-- Error notification
exports['hd-notify']:SendNotify('Error', 'Something went wrong', 'error', 5000)
-- Warning notification
exports['hd-notify']:SendNotify('Warning', 'Please be careful', 'warning')
-- Info notification (with default duration)
exports['hd-notify']:SendNotify('Information', 'Here is some useful info', 'info')
