Hello
What i want to do is send notifications in the corner of the screen, like those roblox notifs when you get a badge, points, etc. (With my own text of course)
Does anyone know how i can do that?
Hello
What i want to do is send notifications in the corner of the screen, like those roblox notifs when you get a badge, points, etc. (With my own text of course)
Does anyone know how i can do that?
StarterGui:SetCore()
allows you to perform certain actions with Roblox’s CoreScripts, including sending notifications. To send a notification, try this (LocalScript only)
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "Notification Title", -- Required
Text = "Notification Description", -- Required
Icon = "rbxassetid://1234567890" -- Optional
})
There are more customization options on this page
Hope this helps!
Hi, I know I’m late, you forgot duration…
This is an optional parameter.