Configuration

There´s full config with exports and events what you can use

Config.lua

Config = {}
Config.TestCommand = "testnotify" -- /testnotify success "This is a test notification from Lua!" or only /testnotify for default message
Config.SettingsCommand = "notifysettings" -- /notifysettings to open settings menu
Config.Locale = {
    settings = "Settings",
    topleft = "Top Left",
    topright = "Top Right",
    center = "Center",
    success = "Success",
    error = "Error",
    info = "Info",
    announcement = "Announcement",
    test = "TESTING",
}

Using Client export

exports['ug-notify']:Notify("success", "This is test Notify")

Using Client Event

TriggerEvent("ug-notify:send", "info", "This is test Notify")

Using Server

or

Last updated