So I am making a script that clones a part,and then destroys that cloned part, and ads a new cloned part.What is weird, is that when it clones the second cloned part, it clones 2 of them,instead of 1.
I believe what you want to do is this, but since you have not supplied any code I can't really help you that well. Here's what I've got.
for i = 1,2 do local Part = Instance.new("Part") coroutine.wrap(function() wait(3) Part:Destroy() end)() end