Region3 Around Certain Point?

I want to make a Region3 where a certain point is in the center of the “box” a Region3 creates. Like this: smile

How would I do this? (Also yes I stink at math)

1 Like

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))
3 Likes

Thank you! Like I said, I’m bad at math.

1 Like