Start by creating a local script inside of StarterGui.
Then, drag and drop all of the music inside of the script.
Inside of the script, you can copy and paste this.
3 | repeat wait() until not script.Music 1. IsPlaying |
5 | repeat wait() until not script.Music 2. IsPlaying |
7 | repeat wait() until not script.Music 3. IsPlaying |
One of the reasons that your script may not be working is that you forgot to place an end
for the 'while true do'.
Using the 'IsPlaying' property of a sound, we can detect whether or not it is playing. Once the sound is finished, the 'IsPlaying' property of it is false.
The script I've given you plays the music, detects when it has finished and plays the next one. It will repeat this playlist forever.