So i scripted a scripted a script where it takes the blocks in this generated model and changes it to a specific terrain type according to the color but it doesn't work please hlep
01 | local parts = workspace.Yes:GetChildren() |
02 | print (#parts) |
03 | for i = 1 ,#parts do |
04 | if parts [ i ] .color.Value = = "Grime" then |
05 | print ( "ok" ) |
06 | local sizer = parts [ i ] .size |
07 | local pos = parts [ i ] .CFrame game.Workspace.Terrain:FillBlock(pos,sizer,Enum.Material.Grass) |
08 | elseif parts [ i ] .color.Value = = "Sand blue" then |
09 | local sizer = parts [ i ] .size |
10 | local pos = parts [ i ] .CFrame game.Workspace.Terrain:FillBlock(pos,sizer,Enum.Material.Water) |
11 | end |
12 | end |
the print in line 5 dosent print anything
I have a suggestion that might help solve your problem. Instead of going through the parts 1 by 1 like you did, try to use a in pairs loop.
i = Index, your table v = Variable, the part INISDE the table
Replace line 3:
1 | for i, v in pairs (table) do — Replace “table” with the table of parts you have. |
2 |
3 | end — Make sure there is an end at the bottom of the new loop... |
Hope this helped!
Note: I’m on mobile so some formatting and code syntax may be wrong.
I tried doing it again like this but it still has the same result
01 | local parts = workspace.Yes:GetChildren() |
02 | print (#parts) |
03 | for i, v in pairs (parts) do |
04 | if v.color.Value = = "Grime" then |
05 | print ( "ok" ) |
06 | local sizer = v.size |
07 | local pos = v.CFrame game.Workspace.Terrain:FillBlock(pos,sizer,Enum.Material.Grass) |
08 | elseif parts [ i ] .color.Value = = "Sand blue" then |
09 | local sizer = v.size |
10 | local pos = v.CFrame game.Workspace.Terrain:FillBlock(pos,sizer,Enum.Material.Water) |
11 | end |
12 | end |