Well, there kind of is. GSAP can be used with promises, but getting into the details of how async and await work is beyond the scope of this forum.    async function animate1() { await Promise.all([ t2.timeScale(2).reverse(), t3.timeScale(2).reverse() ]); t1.timeScale(1).play(); }   See the Pen ZEKbvbZ by GreenSock (@GreenSock) on CodePen  
    • Like
    3