For i,v in pairs help

I’m trying to change the material of all parts in workspace to plastic, could someone help? this script is erroring.

for i,v in pairs(game.Workspace:GetDescendants()) do
if v:IsA(“BasePart”) then
v.Material = “Plastic”

Just do:

for i,v in pairs(workspace:GetDescendants()) do
    if v:IsA("BasePart") then
        v.Material = "Plastic"
    end
end

You forgot to add the ends

1 Like
for i,v in pairs(game.Workspace:GetDescendants()) do
if v:IsA(“BasePart”) then
v.Material = “Plastic”
end
end

your issue was forgetting to insert 2 ends