I want to make a Region3 where a certain point is in the center of the “box” a Region3 creates. Like this:
How would I do this? (Also yes I stink at math)
I want to make a Region3 where a certain point is in the center of the “box” a Region3 creates. Like this:
How would I do this? (Also yes I stink at math)
so create a region around a position (the center) ?
Wouldnt that just be
local Size = Vector3.new(10,10,10)
local Center = Vector3.new(0,0,0)
local region = Region3.new((Center - Size/2),(Center + Size/2))
Thank you! Like I said, I’m bad at math.