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

Setting Region3 SIZE to grid part SIZE??

Asked by 6 years ago
Edited 6 years ago

The below code is to create a grid for my game. I am trying to add a region3 to each grid piece so that it can be "Captured" by players.

I'm getting an error "Size cannot be assigned to" and thats all it says. Not too familiar with Region3

01local base = game.Workspace.Baseplate
02base.Transparency = 1
03base.CanCollide = false
04 
05local model = Instance.new("Model", game.Workspace)
06model.Name = "Grid"
07 
08for i = 1, 50, 1 do
09    for j =1, 50, 1 do
10        local part = Instance.new("Part", model)
11        local region = Region3.new(Vector3.new(),Vector3.new())
12 
13        part.Name = "Part"--i..", "..j
14        part.Anchored = true
15        part.CanCollide = true
View all 22 lines...

The last line, region.Size = part.Size is throwing the error.

Answer this question