local redpart = game.Workspace.redpart local theparts = {game.Workspace.Part1,game.Workspace.Part2,game.Workspace.Part3,game.Workspace.Part4}
redpart.Touched:Connect(function(hit) local redpart = script.Parent if hit.redpart:FindFirstChild("humanoid") then for i, v in pairs(theparts) do wait (3) v:destroy() end
end
end)
go nuts
local redpart = game.Workspace.redpart local theparts = {game.Workspace.Part1, game.Workspace.Part2, game.Workspace.Part3, game.Workspace.Part4} redpart.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then for i, v in pairs(theparts) do wait (3) v:destroy() end end end)