Hello, I am attempting to fill my shop UI frame with item previews via procedural generation (By grabbing model names from a shop folder). My idea was to have a UIGridLayout constraint within that frame that would automatically format the new previews as a grid.
for _,item in ipairs(ItemTable) do
local newItemPreview = ItemPreview:Clone()
newItemPreview.Parent = ItemPreview.Parent
end
My issue is that when the script runs, I can see in the explorer that the previews do in fact clone, however they appear invisible.