local function changeMaterialsToPlastic() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Material = Enum.Material.Plastic end end end changeMaterialsToPlastic()