Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Region3 Size not setting to part?

Asked by 6 years ago

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?

01local region1 = Region3.new(Vector3.new(3.6, 18.8, 133.2),Vector3.new(30.4, 0.5, 116))
02--local region2 = Region3.new(Vector3.new(1,1,1),Vector3.new(10,10,10))
03 
04local show = Instance.new("Part")
05show.Size = region.Size
06show.CFrame = region.CFrame
07show.Transparency = 0.5
08show.CanCollide = true
09show.Anchored = true
10show.Parent = workspace

All help is appreciated.

Answer this question