How to maintain javascript dependencies to solve “MorphSVGPlugin is not defined”?

I used these plugin/libraries/js-files in my project:

<script src="https://use.fontawesome.com/15d0f12843.js"></script>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js"></script>
  <!-- main js -->
  <script src="js/main.js"></script>
  <!-- style switcher js -->
  <script src="js/style-switcher.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.1/TweenMax.min.js"></script>
  <script src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/MorphSVGPlugin.min.js"></script>     
  <script src="js/game.js"></script> 

If I remove Gsap 3.2.6 and babel js libraries from code the MorphSVGPlugin works fine. But I can’t use them together. How can I resolve the issue. Also, please keep it in your kind consideration that I am a beginner in Javascripts