I have a gui and I want to tween it to move up and down on the screen after I press a button.
I did TweenService:TweenPosition and if I spam the button, it will finish current and stop working. How would I make it so if I press it again, it will go back up/down even if it didn't finish the last tween?
01 | -- example of my script (not exact bc I don't have it in front of me rn and cant get on) |
02 | -- I used a debounce to make it so they couldnt spam but I didn't like waiting for the debounce to close it. |
03 |
04 | local idk = true |
05 | script.Parent.MouseButton 1 Click:Connect( function () |
06 | if idk then |
07 | idk = false |
08 | tweenOut() |
09 | else |
10 | idk = true |
11 | tweenIn() |
12 | end |
13 | end ) |
14 |
15 | function tweenIn() |