local Soundone = game.Workspace.Music.Sound local Soundtwo = game.Workspace.Music.Sound2 local Soundthree = game.Workspace.Music.Sound3 local Soundfour = game.Workspace.Music.Sound4 wait(0) while true do Soundone.Looped = true Soundone:Play() wait(120) Soundtwo.Looped = true Soundtwo:Play() wait(240) Soundthree.Looped = true Soundthree:Play() wait(360) Soundfour.Looped = true Soundfour:Play() end
Whenever a song plays and stops to go to the other song, it plays the first song before that over again. Any scripts or answers that'll help?
Use «SOUND»:Stop()
.
See: http://wiki.roblox.com/index.php?title=API:Class/Sound/Stop