Expand a region3

Hi, i have a script with Region3 and i want to expand the region with Y = 350

I have this:

local region = Region3.new(v.Position - (v.Size/2),v.Position + (v.Size/2))

and i have try to make this:

local region = Region3.new(v.Position - (v.Size/2),v.Position + (v.Size/2),v.Size + Vector3.new(0,350,0))

But it’s not work, the region don’t expand to Y = 350 :confused:

The volume of a Region3 is capped, so if the region you’re attempting to make is larger than the capped volume; it won’t be any larger. I’ve encountered this issue before. What I did to bypass it was to basically split my Region3’s and make two different ones to fill up the same space; just divide the space between the two.

I see but if i create an other region, the space between the two regions not working so… i want to loop player in this Region but if i have a space the player won’t loop ^^