SendNotify
Sends a notification message to the client with specified type and duration.
Bridge.Notify.SendNotify(message, type, time)local Bridge = exports['community_bridge']:Bridge()
-- Send a success notification
Bridge.Notify.SendNotify("Action completed successfully!", "success", 5000)
-- Send an error notification with default duration
Bridge.Notify.SendNotify("Something went wrong!", "error")Last updated