A simple for loop is like:
for i = 1,3 do print(i) end
The break statement immediately ends the current loop when executed, if you whant to complete the for loop then you shouldn't use break.
for i = 1, 3 do
if ( i == 2 ) then break end
print( i )
end