Send Notification Icon not showing?

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)

Have you tried: "rbxassetid://6736782384"?

I’ll try that, thanks for your time!

weirdly still gave me a blank space for the image, heres my code

script.Parent.MouseButton1Click:Connect(function()
	game.StarterGui:SetCore("SendNotification", {
		
		Title = "Notification";
		Text = "Not Added Yet";
		Icon = "rbxassetid://6736782362";
		Duration = 100;
	})
end)

OH! I turned on http request, fixed it.