Building System Collision Boxes Set Up

I’m trying to set up a building system similar to the one in Fortnite but I ran into a huge issue. I can’t get the boxes to line up in certain situations and this causes the whole building system to be thrown off. Can someone please help me with a building system where all the walls would line up? Thank you.

you should be able to round the locations to the nearest value, so basically create a snapping system. to do this you could break the vector and use the floor or round nodes on each axis (i dont know of a way to round all axis at once as a vector). so say you wanted to snap to the nearest 100units or meter for each axis you would: take the axis value divide by 100, then round, then multiply by 100. so as an example lets say you were aimed at X213, the it would be 213/100=2.13, 2.13 rounded is 2, 2*100=200.

also i dont know if you know but theres a guy already making a tutorial on how to recreate the building system in fortnite. i havent watched his videos but ill [link][1] them anyways.