for row, column in pairs(grid) do
for key, tile in pairs(column) do
local frame = Instance.new("ImageLabel",Visual_Folder)
frame.Transparency = 1
frame.Name = row..","..key
frame.Image = colors[tile["color"]]
local button = Button_Folder:WaitForChild("UIGridLayout")
print(button.Name)
frame.Size = button.CellSize
end
end
(frame is an image label)
Can I not set the size of an image label like this?