How to get a Notification to pop up

Ello, my name is @q_arn and I need help getting a roblox notification to pop up.

like so in the corner.

"SendNotification"

Not sure I 100% I understand. 1111111111111111

Sorry, you would pass what action you want, the one you are looking for is “SendNotification”. The second argument is just the configuration table, where you configure text, duration, etc. It is all documented in the link sent.

local StarterGui = game:GetService("StarterGui")

StarterGui:SetCore("SendNotification", {
    Title = "Hello there!",
    Text = "This is a sample"
})
3 Likes