How to send roblox notifications when touching a part

Hello guys, I was wondering how to script a notification on the bottom corner when you like earn a badge or points etc. but only when you’re in contact with a part.

You can use StarterGui:SetCore on the client.

Code:

local StarterGui = game:GetService("StarterGui")
StarterGui:SetCore("SendNotification", {
	Title = "Cool Notification", --//Required
	Text = "Here's some text", --//Required
	Icon = 000000,
	Duration = 5,
})

There’s also more arguments if you want to add things like buttons:

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