Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What is a for loop and what can it do?

Asked by 10 years ago

Can someone just explain to me in as much detail as possible what a for loop is and how it works and what stuff can it do?

2 answers

Log in to vote
2
Answered by
l0cky2013 135
10 years ago

There are two types of loops, a numeric for loop, and a generic for loop. They are both mainly used for iterating through tables of different kinds. Although the numeric for loop is also commonly used for countdowns.

Generic For

1local tab={"Hello"}
2for index, value in pairs(tab) do
3print(index, value)
4end

Will print "1 Hello."

Numeric For

1local tab={"Hello"}
2for index=1, #tab do
3print(index, tab[index])
4end

Will print "1 Hello" as well.

Countdown

1local t=30 --time to countdown from
2for index=t, 1, -1 do
3print(index)
4wait(1)
5end
1
for the countdown one couldnt you just do for t,1,-1 do print(t) ?? NinjoOnline 1146 — 10y
Ad
Log in to vote
1
Answered by
Thetacah 712 Moderation Voter
10 years ago

For loops can be used for many things, like irritating through tables or making a loop go 10 times.

--This loop goes through a table and prints its index and value.

1myTable = {"Thetacah", "Josh", "John"};
2for i, v in pairs(myTable) do
3wait(1)
4print(i..v)
5end

--This loop will print one through ten since it runs 10 times and i is the value of the ammount of times the loop runs.

1for i = 1, 10 do
2wait(1)
3print(i)
4end

Answer this question