Notification Icon not showing

server

local rs = game:GetService("ReplicatedStorage")
rs.Notify:FireClient(plr,"failed","sorry",8737963189)

client

local rs = game:GetService("ReplicatedStorage")
local ui = game:GetService("StarterGui")

rs.Notify.OnClientEvent:Connect(function(title,text,icon)
	ui:SetCore("SendNotification", {
		Title = title;
		Text = text;
		Icon = icon
	})
end)

The text shows perfectly but the icon does not show up.

I already have addressed this type of issue here:

Basically you’re using the visible website id, not the asset id(the asset id is 8737963159)

1 Like