Hi dev’s, today i have issue: Images in gui not loading.
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
And link of images:
Have a nice day!