notify - EdgeIY/infiniteyield GitHub Wiki
void notify(<string> title, <string> message)
Note: void means no values are returned
Creates an Infinite Yield message box appear with the title title and text message.
The message box looks like this:
-- Note: This is just a snippet
["Function"] = function(args, speaker)
notify("Username", speaker.Name)
endThis is a great alternative to using game:GetService("StarterGui"):SetCore() to make notifications.
