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