#TweenService help

6 messages · Page 1 of 1 (latest)

verbal ivy
#

You could use a variable to check if it has been clicked once or not.

#

then use “else” if the variable is false, doing the other tween instead

#
local secondClick = false

click.MouseClick:Connect(function()
  if secondClick = false then
    tween1:Play() -- for example
else
  tween2:Play()
)``` something like this?
#

👍

#

yep

#

I made it