Hello guys. I have a problem that may be something simple, but I couldn't find a solution. I need to use the system to build multiple blocks on the screen when I enter a certain room, the blocks are destructible sprites that when you destroy them, items drop, (like in the mario game) they need to be aligned next to each other simulating a brick wall (they cannot overlap) are 31 blocks horizontally and 12 blocks vertically for a total of 372 blocks in a room. I could make the system create block by block indicating the position of each one, but that would take too long and the lines of code would be gigantic, I need to do this in many game rooms so this would take too long to do. I wanted to know if there is a way, some mathematical operation that could put all the blocks in their respective places with just one or two lines of code. I appreciate any help.