How to display this message?

Hi,
I just need to know how to display this statement in the right-bottom corner of the screen:


Screenshot from Sonic Speed Simulator

You can use SetCore references.

1 Like
local StarterGui = game:GetService("StarterGui")

StarterGui:SetCore("SendNotification", {
	["Title"] = "Reward Successfully Claimed!",
	["Text"] = "Check back for more later!",
	["Duration"] = 3
})
1 Like