After a little bit, I finally got an in/out transition with litetween. When the mouse hovers over the object, it moves up a little bit to show it's selected, once the mouse moves off the object the object moves back down into it's original place. My only problem is that I can only have it trigger the in/out animation once the previous animation is finished. So, I will hover the mouse onto it for a second, initializing the in animation, then take the mouse off, then have to wait a couple of seconds before it does the out animation because it was still busy with the in animation. For now, I have this set up like this on purpose because without it, the object will teleport to the end of the in animation so it can execute the out animation. I know how to stop it from doing this, making it use relative position instead of absolute, but then it very easily goes into the wrong spot because if I take my mouse off when it's only half done the in animation, it will go down much farther than the original position. If anyone knows the solution, it'd be really helpful, thanks!