Advertisement
script2lu

Music Playlist Script

Jan 19th, 2020
1,165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local music = {"2677086605", "4333346450", "2837346742", "2229361754", "2801121982", "3887028683", "4326384848", "2670954484", "2852658307", "201363551", "2409832000", "3898358473", "3823067912", "510033671", "3895874223", "3908043580", "3899495835", "3780682275", "3183066364", "2916513007", "2699504138", "2545193975", "2183613911", "2164151618"}
  2. local sound = script.Parent.Sound
  3. local muted = false
  4.  
  5. while true do
  6. for i = 1, #music do
  7. sound.SoundId = "rbxassetid://"..music[i]
  8. wait(3)
  9. sound:Play()
  10. wait(sound.TimeLength)
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement