Inserting an icon to a notification not working

  1. 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.

  1. What is the issue?

It keeps saying that the image request failed, and there is no decal.

  1. 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;
})

Hello, this might be quite a short answer, but you might be using decal id(link).
You will need to insert image id(link) for the proper image; thus id should be 4485364377 instead of 4485364382

Try using this link:

'https://www.roblox.com/asset/?id=4485364377'

You are not supposed to put the URL to the decal on the website. You’re supposed to put rbxassetid://[id]/https://www.roblox.com/asset/?id=[id].

1 Like

Error

Seems like you did it twice, make sure to read the error.

1 Like

Tell me what I did wrong;

But..

Oh, I meant you could either do rbxassetid://[id] OR https://www.roblox.com/asset/?id=[id].

1 Like

Oh, ok. (I didn’t not know that). Anyways, thanks for your help.

1 Like

Sorry for the confusion, no problem though!