Why images in gui not loading?

Hi dev’s, today i have issue: Images in gui not loading.
image
I dont know where problem but i send script and parts:

local c = script.Parent.Item:Clone()
script.Parent.Item.Parent = nil

for i,v in game.ReplicatedStorage.Hats:GetChildren() do
	if v:IsA("NumberValue") then
		local c = c:Clone()
		c.Name = v.Name
		c.Image = "rbxassetid://"..v.ImageValue.Value
		c.Price.Text = v.PriceValue.Value.."$"
		c.Points.Text = "+"..v.Value
		c.Parent = script.Parent
		c.Visible = true
	end
end

image
image

And link of images:

Have a nice day!

3 Likes

There are many different causes, can you check to make sure the ImageValue.Value actually has the value? I assume it does. Try debugging by adding a print(“rbxassetid://”…v.ImageValue.Value) and seeing what it prints out.