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

Why is my block to terrain changer script not working?

Asked by 4 years ago

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

01local parts = workspace.Yes:GetChildren()
02print(#parts)
03for 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
12end

the print in line 5 dosent print anything

2 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

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:

1for i, v in pairs(table) do — Replace “table” with the table of parts you have.
2 
3end — 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.

Ad
Log in to vote
0
Answered by 4 years ago

I tried doing it again like this but it still has the same result

01local parts = workspace.Yes:GetChildren()
02print(#parts)
03for 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
12end
0
I edited my answer. You need to use "v" instead of "i" ThatDevTim 188 — 4y

Answer this question