So I wonder whenever I use repeat until like
repeat mov = mov - 1 until mov == -10 --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
local mov = 0 repeat mov = mov - 1 until mov == -10
then put your script after it lel