Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

how to tween gui without finishing previous tween?

Asked by 3 years ago

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 
04local idk = true
05script.Parent.MouseButton1Click:Connect(function()
06    if idk then
07        idk = false
08        tweenOut()
09    else
10        idk = true
11        tweenIn()
12    end
13end)
14 
15function tweenIn()
View all 21 lines...

1 answer

Log in to vote
1
Answered by 3 years ago

You have to pass the fifth parameter to override all in-progress tweens.

Ad

Answer this question