I have programmed a world generator and
1 | while true do |
2 | wait () |
3 |
4 | end |
already generates too much delay and ensures that the world is generated very slowly
01 | local amount = 0 |
02 | local MaxAmount = 20 -- 10,20,100 |
03 | while true do |
04 | if amount+ 1 > MaxAmount then |
05 | amount = 0 |
06 | wait() -- Set Amount |
07 | return |
08 | end |
09 | amount = amount+ 1 |
10 | if amount = = MaxAmount then |
11 | amount = 0 |
12 | wait() -- Set amount |
13 | return |
14 | end |
15 |
16 | -- Do rest |
17 |
18 |
19 | end |