- What do you want to achieve?
I want a notification that when players join, they will get a welcome message. The problem is listed below.
- What is the issue?
It keeps saying that the image request failed, and there is no decal.
- What solutions have you tried so far?
I’ve tried switching decals about 5 times now, and each attempt failed. (Which is why I made this post)
My script is below, please point out any mistakes
local function callback(Text)
if Text == "Dismiss" then
print("Welcome notification closed")
end
end
local NotificationBindableFunction = Instance.new("BindableFunction")
NotificationBindableFunction.OnInvoke = callback
---------------------------------------------------------------------
game.StarterGui:SetCore("SendNotification", {
Title = "Notification";
Text = "Welcome to the game! Make sure to leave a like, favorite, and follow! -Pieces2010";
Button1 = "Dismiss";
Icon = "https://www.roblox.com/library/4485364382/Green-Check-Mark-Round";
Duration = 120;
Callback = NotificationBindableFunction;
})