How i can make badge-alike message

i need to make message that looks like badge awarded message and appears like it, how i can make it?
9a45e5a46f026cc7546c4df4f6c931943bdcf28e

local StarterGui = game:GetService("StarterGui") -- not sure why you used CoreGui

StarterGui:SetCore("SendNotification", {
	Title = "question",
	Text = "is roblox cool",
	Duration = 5, -- how long it stays
	Button1 = "Yes", -- adds buttons can remove
	Button2 = "No" -- adds buttons can remove 
})
1 Like

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