notify
-- Basic notification to a player
ps.notify(source, "Welcome to the server!")
-- Success notification with custom duration
ps.notify(source, "Item purchased successfully!", "success", 3000)
-- Error notification
ps.notify(source, "Insufficient funds!", "error")
-- Warning with longer duration
ps.notify(source, "Vehicle will be impounded in 30 seconds!", "warning", 8000)Last updated