while true do local bob =script.Parent:Clone() bob.Parent = workspace wait(1) end
When i ran the emulation, it just spawned 4 clones, waited and repeated. can someone fix it
Try a different type of loop.
for loop = 1, 4 do --Change the 4 to however many times it loops local bob =script.Parent:Clone() bob.Parent = workspace wait(1) end
If this isn't what you were looking for, I'm sorry. I wasn't quite sure what you wanted to do.