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
01 | local base = game.Workspace.Baseplate |
03 | base.CanCollide = false |
05 | local model = Instance.new( "Model" , game.Workspace) |
10 | local part = Instance.new( "Part" , model) |
11 | local region = Region 3. new(Vector 3. new(),Vector 3. new()) |
15 | part.CanCollide = true |
16 | part.Size = Vector 3. new( 8 , 0.25 , 8 ) |
17 | part.Position = Vector 3. new(i* 8 , 0.125 , j* 8 ) |
20 | region.Size = part.Size |
The last line, region.Size = part.Size is throwing the error.