Hi, when people join my place, the music keeps playing from my script.
Here is the script:
while true do
game.Workspace.song1name:Play()
wait(song1length)
game.Workspace.song2name:Play()
wait(song2length)
end
It is a LOCAL Script, and I've tried putting it in many places such as Workspace and StarterGUI, but everytime it keeps repeating. I've tried a normal script too.
You need to see if the sound is started, otherwise it spams the sound, try something like this:
01 | function startSong() |
02 | local isStarted 1 = false |
03 | local isStarted 2 = false |
04 | while true do |
05 | if not isStarted 1 then |
06 | game.Workspace.song 1 name:Play() |
07 | isStarted 1 = true |
08 | wait(song 1 length) |
09 | game.Workspace.song 1 name:Stop() |
10 | isStarted 1 = false |
11 | elseif not isStarted 2 then |
12 | game.Workspace.song 1 name:play() |
13 | isStarted 2 = true |
14 | wait(song 2 length) |
15 | game.Workspace.song 2 name:Stop() |