ADVERTISEMENTREMOVE ADS

[NEW] DemoNotifications (notifications library)

Universal script
7 months ago
Script preview thumbnail
Script Preview

Description

DemoNotifications is a new roblox notifications library with a beautiful design and easy use!
github: https://github.com/DemogorgonItsMe/DemoNotifications/tree/main

ADVERTISEMENTREMOVE ADS
33 Lines • 1.26 KiB
Raw
-- This is just an example! You can customize the script as you want.
local BeautifulNotifications = loadstring(game:HttpGet("https://raw.githubusercontent.com/DemogorgonItsMe/DemoNotifications/refs/heads/main/V1/source"))()
-- Initialization with settings
local notifier = BeautifulNotifications.init({
Duration = 7, -- Notification duration
MaxNotifications = 4, -- The maximum number of notifications
Width = UDim.new(0.35, 0) -- Width of notifications
})
-- success notification
notifier:Success("Successfully!", "Let's go!", {
Duration = 3 -- you can change the duration separately
})
-- error notification
notifier:Error("Error", "Hell no")
-- warning notification
notifier:Warning("Warning", "very cool library!")
-- info notification
notifier:Info("Info", "library by Demogorgon!")
notifier:Custom("Custom notification", "Any color and icon",
Color3.fromRGB(255, 105, 180), -- color
"rbxassetid://6031091004", -- icon id
{
Duration = 10, -- duration
CornerRadius = UDim.new(0, 12) -- corner
}
)
local notifier2 = BeautifulNotifications.init({ -- you can multiple notifiers
Duration = 5,
MaxNotifications = 2,
Width = UDim.new(0.35, 0)
})
notifier2:Success("Successfully!", "Let's go!")
ADVERTISEMENTREMOVE ADS

Comments

1 comment
to add a comment
Gp

That's pretty good ngl

1
0
ADVERTISEMENTREMOVE ADS