I’m making a notification and when I do Icon for send notification it doesn’t show, any help?
Thing I tried first:
script.Parent.MouseButton1Click:Connect(function()
game.StarterGui:SetCore(“SendNotification”, {
Title = "Notification";
Text = "Not Added Yet";
Icon = 6736782384;
Duration = 100;
})
end)
method 2 I tried:
script.Parent.MouseButton1Click:Connect(function()
game.StarterGui:SetCore(“SendNotification”, {
Title = "Notification";
Text = "Not Added Yet";
Icon = "6736782384";
Duration = 100;
})
end)