01 | for q = 1 , 100 do |
02 | wait() |
03 | print (q* 2 ) |
04 | end |
05 |
06 | for i = 1 , 200 do |
07 | wait() |
08 | if not i% 2 = = 0 then |
09 | print 'not EVEN close' --I know, not very punny, oops, funny |
10 | end |
11 | end |
What's going to happen is the first loop is going to run, and then once it's over, the next loop will run. The only way(in my mind) is to make a separate script for the second loop. But i need 6 loops to run at the same time, and I don't want 6 scripts appearing whenever the round restarts(i need 6 loops to run when the round restarts for various purposes). So how can i get 6 loops to run at the same time in the same script?
I'd say you have to make it so something triggers them with a function, that's how I'd do it at least.
01 | --Example idea |
02 | game.Workspace.ChildAdded:connect( function () |
03 | for q = 1 , 100 do |
04 | wait() |
05 | print (q* 2 ) |
06 | end |
07 | end ) |
08 | game.Workspace.ChildAdded:connect( function () |
09 | for i = 1 , 200 do |
10 | wait() |
11 | if not i% 2 = = 0 then |
12 | print 'not EVEN close' --I know, not very punny, oops, funny |
13 | end |
14 | end |
15 | end ) |
You can use spawn. This will cause the function you give it as an argument to run separate from the rest of the script (although it's actually much more complex than that, read the wiki about it if you want). This allows you to run two loops at the same time.
01 | function loop() |
02 | for i = 10 , 20 do |
03 | wait( 1 ) |
04 | print (i) |
05 | end |
06 | end |
07 | spawn(loop) |
08 |
09 | for i = 1 , 10 do |
10 | wait( 1 ) |
11 | print (i) |
12 | end |
You can also use coroutines to get a similar effect. The wiki has pretty much your exact example on it, so I won't bother writing one.
use coroutine, it lets you run more than 1 things on a script: http://wiki.roblox.com/index.php?title=Function_dump/Coroutine_manipulation
01 | coroutine.resume(coroutine.create( function () --the script will be running both this and the other loop at the same time |
02 | for q = 1 , 100 do |
03 | wait() |
04 | print (q* 2 ) |
05 | end |
06 | end )) |
07 |
08 | for i = 1 , 200 do |
09 | wait() |
10 | if not i% 2 = = 0 then |
11 | print 'not EVEN close' --I know, not very punny, oops, funny |
12 | end |
13 | end |
and you could do:
01 | coroutine.resume(coroutine.create( function () |
02 | for q = 1 , 100 do |
03 | wait() |
04 | print (q* 2 ) |
05 | end |
06 | end )) |
07 |
08 | coroutine.resume(coroutine.create( function () --now both loops are in a coroutine, so if you added anything else it would run both loops and whatever other code you put |
09 | for i = 1 , 200 do |
10 | wait() |
11 | if not i% 2 = = 0 then |
12 | print 'not EVEN close' --I know, not very punny, oops, funny |
13 | end |
14 | end |
15 | end )) |
And if you need to script to run more than 3 things at once you can just add more coroutines!
Recursive solution to making a loop and printing it 100 times
01 | function PrintvalTimes(value) |
02 | if (value = = 0 ) then --base case |
03 | print (value); |
04 | else |
05 | PrintvalTimes(value- 1 ) |
06 | end |
07 |
08 |
09 | end |
10 | PrintvalTimes( 100 ) |
then if you wanted another loop, just use this function as a model