Howdy. I’m trying to make a ui animation where you click a button, it stretches outwards on the x-axis first, waits 0.3 seconds, and then stretches to the full size on the y-axis. I have run into a problem where it only stretches the x-axis and not the y. Can somebody explain what’s wrong with the code?
The x-axis tween takes 1 second, but you’re only waiting 0.3 seconds before you start the y-axis tween.
You could either change the x-axis tween to be 0.3 seconds.
You could add true as a fifth parameter to the y-axis tween to override the other tween; however, I’m unsure whether or not this will completely stop the x-axis tween.