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