Failed to Load Sound
So, I am working on a BG Music Script but after the 1st Sound plays, I get an error message.
Screenshots
Here is the screenshot:
I have attempted to see what the issue is but nothing is working. Any help?
Here is the code:
song1 = "http://www.roblox.com/asset/?id=4670075979"
song2 = "http://www.roblox.com/asset/?id=5151823825"
song3 = "http://www.roblox.com/asset/?id=5266216413"
song4 = "http://www.roblox.com/asset/?id=5266239161"
song5 = "http://www.roblox.com/asset/?id=5256146757"
song6 = "http://www.roblox.com/asset/?id=5266257144"
song7 = "http://www.roblox.com/asset/?id=5266278255"
local music = Instance.new("Sound")
music.Archivable = true
music.Parent = script.Parent
music.Pitch = 1
music.Volume = 1
music.Looped = false
music.Name = "Player"
while (true) do
print 'Playing Sound 1'
music.SoundId = song1
music:play()
wait(60)
--2--
print 'Playing Sound 2'
music.SoundId = song2
music:play()
wait(83)
--3--
print 'Playing Sound 3'
music.SoundId = song3
music:play()
wait(82)
--4--
print 'Playing Sound 4'
music.SoundId = song4
music:play()
wait(82)
--5--
print 'Playing Sound 5'
music.SoundId = song5
music:play()
wait(83)
--6--
print 'Playing Sound 6'
music.SoundId = song6
music:play()
wait(85)
print 'Playing Sound 7'
music.SoundId = song7
music:play()
wait(89)
end
Anybody know what the issue is?