ADVERTISEMENTREMOVE ADS

Notification | Universal OPEN Source

Universal script
3 months ago
Script preview thumbnail
Script Preview

Description

AxrexNotifier – Modern Roblox Notification Library

Description:
AxrexNotifier is a sleek and professional notification system for Roblox, designed to provide smooth, animated alerts directly on the player’s screen. It combines modern UI elements with easy customization, making it perfect for scripts, games, and admin tools.

Features:

  • Smooth slide-in animation from the bottom-right corner

  • Automatic fade-out after a configurable duration

  • Gradient backgrounds with rounded corners and shadow effects

  • Customizable title, message, and display time

  • Console logging for debugging and tracking

  • Lightweight, efficient, and modular

  1. Easy integration via ModuleScript or GitHub load
    Usage Example:

    local NotificationLib = require(game.ReplicatedStorage:WaitForChild("AxrexNotifier"))

    NotificationLib:Show("⚡ AxrexHub", "Script executed successfully!", 3)

Tested with

ADVERTISEMENTREMOVE ADS
12 Lines • 430 Bytes
Raw
local HttpService = game:GetService("HttpService")
local rawLink = "https://raw.githubusercontent.com/AxerRe/ProSite/refs/heads/main/views/AxrexNotifier.lua"
local success, NotificationLib = pcall(function()
return loadstring(game:HttpGet(rawLink))()
end)
if success and NotificationLib then
NotificationLib:Show("⚡ Example", "Library loaded!", 3)
else
warn("Failed to load Notification from GitHub!")
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS