i need to make message that looks like badge awarded message and appears like it, how i can make it?
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.