notify - EdgeIY/infiniteyield GitHub Wiki

Documentation

void notify(string title, string message)

Note: void means no values are returned

Description

Creates an Infinite Yield message box appear with the title title and text message.

The message box looks like this:

Example

--Note: This is just a snippet
["Function"] = function(args,speaker) 
  notify("Username",speaker.Name) 
end

Additional Notes

This is a great alternative to using game.StarterGui:SetCore() to make notifications.