Geedix...I was able to edit YOUR code pen to work the way I wanted to.
<div id="drawSVG">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" version="1.1" viewBox="0 0 300 250" xml:space="preserve">
<defs>
<style>
.cls-1 {
stroke: #97baff;
fill:none;
stroke-width:10px;
}
.cls-2 {
fill: #4cff45;
}
</style>
</defs>
<!-- Generator: Adobe Illustrator 28.7.1, SVG Export Plug-In . SVG Version: 1.2.0 Build 142) -->
<g >
<path id="path" class="cls-1" d="M-21.956,123.558s135.221-57.508,175.72,28.401c22.854,63.991-58.506,67.648-47.38,12.397,20.222-98.306,216.707-127.06,216.707-127.06"/>
</g>
</svg>
</div>
gsap.registerPlugin(DrawSVGPlugin);
gsap.from("#path", { drawSVG: 0, duration: 1, delay: 0.5 });
gsap.to("#path", { drawSVG: 0, duration: 1, delay: 3.5 });
This all works EXACTLY like I want it to work on YOUR code pen. When I put that into my code pen it does not. I get uncaught ReferenceError: gsap is undefined.
I just cannot wrap my head around why it works on your end and on my end I'm writing the exact same code and it's broken. Why? Why? Why?