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

i got a script but i can get it to rise by 10?

Asked by 9 years ago
1while true do
2for i = -275,5000 do
3    print(i)
4    wait(30)
5end
6end

how can i make it rise by 10?

1 answer

Log in to vote
1
Answered by
DeadToMe 105
9 years ago
1while true do
2    for i = -275, 5000, 10 do
3        print(i)
4        wait(30)
5    end
6end
Ad

Answer this question