Slick Slider not auto sliding

Hi,
I wonder can any of you fine people tell me why the slick slider in this website is running but not auto sliding: https://mckevittking.webflow.io/

I’ve used this Webflow CMS slider before on other projects and it works perfect. I can’t figure out why this one is behaving differently?

https://preview.webflow.com/preview/mckevittking?utm_medium=preview_link&utm_source=designer&utm_content=mckevittking&preview=0b88d1d6558bab53f819af9ea135038e&workflow=preview

<script>
    $(document).ready(function(){
        $('.dyn-list').slick({
            slidesToShow: 3,
            slidesToScroll: 1,
            arrows: true, 
            dots: true,
            autoplay: true,
            autoplaySpeed: 2000,
        });
    });
</script>

please use this format

Hi, Thanks but replacing with that script broke it even further!! This was the net result:

The exact same script is in use on this website and it works perfectly

@Bammedia please add this <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> then check again

like this

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.js"></script>
<script>
    $(document).ready(function(){
        $('.dyn-list').slick({
            slidesToShow: 3,
            slidesToScroll: 1,
            arrows: true, 
            dots: true,
            autoplay: true,
            autoplaySpeed: 2000,
        });
    });
</script>

No, thanks for your help but that doens’t fix the issue either.
Honestly, it’s moments like this I wonder why we all pay such extoriniate pricing for Webflow when you have to rely on custom coding to create something as simple as a CMS based slider!