Last updated: Aug 1, 20262 min read

Notification Toast

Spawns slick sliding notification cards on the edge of the game window.

Toast Notification#

LUA Script
1Window:Notify(title, text, duration)
  • title (string): Notification header.
  • text (string): Content body.
  • duration (number): Seconds before dismissal (defaults to 5). Includes a countdown progress line.

Complete Code Example#

Here is a complete copy-pasteable script demonstrating how to trigger notifications from script events:

LUA Script
1local ValincUi = loadstring(game:HttpGet("https://cdn.vinzhub.com/scripts/Liblery%20Ui/VALINC-QUARTZ/57319f29599c47672f19f8d56d53ffbe/a6b3ccb1f04d1d7d06232a9c5d25779e2af89c12992bebae.lua"))()
2
3local Window = ValincUi:CreateWindow("Notifier Hub", "bell", "gold")
4
5-- Trigger a startup notification
6Window:Notify("VALINC Load", "Premium configuration applied successfully!", 4)
7
8local Tab = Window:CreateTab("Actions")
9local Section = Tab:CreateSection("Trigger Test")
10
11Section:CreateButton("Notify Info", function()
12 Window:Notify("System Info", "Teleported safely to quest location.", 3)
13end, "Sends a short informational notification.")
14
15Section:CreateButton("Notify Alert", function()
16 Window:Notify("Anti-Cheat warning", "Suspicious movement speed detected. Auto Farm throttled.", 6)
17end, "Sends an warning toast notification.")