I have a script.
It's not the full one though
1 | x = 1 |
2 | wait(x+x) |
would it wait 2? Or no?
lol...
1 | x = 1 + 1 |
2 | wait(x) |
Yes it would but why not do
1 | x = 2 |
2 | wait(x) |
Or
1 | x = 1 |
2 | y = 1 |
3 | wait(y+x) |
Put Variety.
You can,if you make a letter mean a number you can add the letters together to make it wait that time.
Example 1:
1 | x = 1 |
2 | wait(x+x) |
Waits 2 seconds. You can make any value and make it wait that much.
Example 2:
1 | y = 10 |
2 | wait(y+y) |
Waits 20 seconds. Or you can add two different letters.
Example 3:
1 | x = 3 |
2 | y = 2 |
3 | wait(x+y) |
Waits 5 seconds.