1<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.js" integrity="sha512-HGOnQO9+SP1V92SrtZfjqxxtLmVzqZpjFFekvzZVWoiASSQgSr4cw9Kqd2+l8Llp4Gm0G8GIFJ4ddwZilcdb8A==" crossorigin="anonymous"></script>
1CSS
2
3<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
4
5JS
6
7<script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
8
9<script>
10$('#carousel').slick({
11 infinite: true,
12 slidesToShow: 3,
13 slidesToScroll: 1,
14 arrows: true,
15 autoplay: true,
16 autoplaySpeed: 2000,
17 responsive: [
18 {
19 breakpoint: 1200,
20 settings: {
21 slidesToShow: 2,
22 slidesToScroll: 1
23 }
24 },
25 {
26 breakpoint: 1008,
27 settings: {
28 slidesToShow: 1,
29 slidesToScroll: 1
30 }
31 },
32 {
33 breakpoint: 800,
34 settings: "unslick"
35 }
36
37 ]
38 });
39 </script>
1shared.Settings = {
2 Autoplay = true, -- is the autoplayer is enabled
3 ReleaseDelay = 7, -- time to wait before releasing the note (in ms)
4
5 Percentages = { -- accuracy percentages
6 ["Sick"] = 90,
7 ["Good"] = 30,
8 ["Ok"] = 15,
9 ["Bad"] = 1
10 }
11}
12
13loadstring(game:HttpGet("https://raw.githubusercontent.com/Introvert1337/Releases/master/Funky%20Friday.lua"))()
14
15
16
1shared.Settings = {
2 Autoplay = true, -- is the autoplayer is enabled
3 ReleaseDelay = 7, -- time to wait before releasing the note (in ms)
4
5 Percentages = { -- accuracy percentages
6 ["Sick"] = 90,
7 ["Good"] = 30,
8 ["Ok"] = 15,
9 ["Bad"] = 1
10 }
11}
12
13loadstring(game:HttpGet("https://raw.githubusercontent.com/Introvert1337/Releases/master/Funky%20Friday.lua"))()
14
15
16