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

Will this variable script work?

Asked by 10 years ago

Here is a script using variable with a loop

a = 2

b = 9

c = a+b

while true do
print(c)
wait(2)
print(b)
wait(2)
print(a)
wait(2)
end

The script is suppose to Print c (printing a+b which is 11) Then print b (which is 9) Then a (which is 2)

Help?

1 answer

Log in to vote
0
Answered by 10 years ago

It works as intended for me. What's the problem?

0
I wanted to know if the letters can print the numbers in the order. Roboy5857 20 — 10y
Ad

Answer this question