notify
ps.notify(text, type, time)
ps.notify(text, type, time)-- Basic notification
ps.notify("Hello World!")
-- Success notification with custom duration
ps.notify("Task completed successfully!", "success", 3000)
-- Error notification
ps.notify("Something went wrong!", "error")Last updated