So I wonder whenever I use repeat until like
1 | repeat |
2 | mov = mov - 1 |
3 | until mov = = - 10 |
4 | --i will wait for it |
I have to wait for it, why do you have to wait? Does it acts like wait but it repeats? This left me curious today So when I create a charging script and I used it, pressed it I will just wait for it until it just fires
literally just do
1 | local mov = 0 |
2 | repeat |
3 | mov = mov - 1 |
4 | until mov = = - 10 |
then put your script after it lel