Hello! I need help because I don’t know how to make a 2D grid placement system. I started with this:
for x = 1, SlotsX do
for y = 1, SlotsY do
local Slot = Instance.new('Frame')
Slot.Parent = SlotsFolder
Slot.Name = 'Slot'
end
end
Can anyone help me?