Region3 Size not setting to part?
Im trying to make a part that will represent where my region is, setting the CFrame and Size. I'm running into a problem where the size is not setting properly. I find it weird because it works just fine for the region2 variable but not the region1.
Is there some kind of restraint on how large a region can be?
01 | local region 1 = Region 3. new(Vector 3. new( 3.6 , 18.8 , 133.2 ),Vector 3. new( 30.4 , 0.5 , 116 )) |
04 | local show = Instance.new( "Part" ) |
05 | show.Size = region.Size |
06 | show.CFrame = region.CFrame |
07 | show.Transparency = 0.5 |
10 | show.Parent = workspace |
All help is appreciated.