Hello @Rager and welcome to the GreenSock forum!   Its always best to only run your animation when the DOM (HTML and or SVG markup is loaded and ready) and the window is fully loaded (images, links, fonts, stylesheets, js, and other media assets)   Try this so you only run your GSAP code when DOM and Window is loaded and ready:   // wait until DOM is ready (html and svg markup) document.addEventListener("DOMContentLoaded", function(event) { // wait until windo
    • Like
    8