mintmousse.notify
Send a notification to all connected clients to see timestamped. It will not appear for new clients.
Synopsis
Parameters
messagestring or table- The message to show, if you pass in a string, it will be set to the table's
textargument.
Message Table
titlestring- String used as the title of the notification.
textstring- String used as the text of the notification.
Returns
Nothing.
Examples
mintmousse.notify("A player went out of bounds!")
mintmousse.notify({
title = "Player Ban",
text = player:getName() .. " was banned by " .. admin:getName(),
})