I'm trying to make a script that plays a random song from a folder i made in the sound service.
01 | local sound = true |
02 | local CurrentSound = nil |
03 |
04 |
05 |
06 | while sound do |
07 | local Music = game:GetService( "SoundService" ).MusicFolder:GetChildren() -- gets all of my sounds and puts them in a folder |
08 | local song = Music [ math.random( 1 ,#Music) ] -- picks a random Song |
09 | song:Play() -- plays the sound |
10 | song.Ended:Wait( 2 ) -- waits until the sound has ended and then it will wait for 2 seconds |
11 | -- should loop again and pick a random number and play it again but it doesn't? |
12 | end |
It works when i play the game but after a song has played it just stops and doesn't play any more music just the first song it chooses
The reason is that it only affects the while loop try adding a coroutine.
01 | local SoundService = game:GetService( "SoundService" ) |
02 | local MusicFolder = SoundService:WaitForChild( "MusicFolder" ) |
03 |
04 | local Sound = true |
05 | local CurrentSound; |
06 |
07 | while (Sound) do |
08 | for _,Song in pairs (MusicFolder:GetChildren()) do |
09 | if (Song:IsA( "Sound" )) then |
10 | CurrentSong = Song |
11 | CurrentSong:Play() |
12 | Song.Ended:Wait( 2 ) |
13 | CurrentSong:Stop() |
14 | end |
15 | end |
16 | end |