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 8 years ago
while true do
for i = -275,5000 do
    print(i)
    wait(30)
end
end

how can i make it rise by 10?

1 answer

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

Answer this question