How to send notification like below?

There are various ways. You can use the Message and Hint objects, or just create a gui.

local m = Instance.new('Message')
m.Text = "Sample Text"
m.Parent = workspace

or

local m = Instance.new('Hint')
m.Text = "Sample Text"
m.Parent = workspace

These two objects are deprecated so I would suggest you create your own GUI using a textlabel.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.