The sound for my game does not play and there are no errors. Heres my code:
local sound1 = 1842967125
local sound2 = 1848183670
local sound3 = 1840012649
local sound4 = 1839304990
local sound5 = 1844030471
while true do
wait()
musicSoundId = "rbxassetid://"..sound1
musicSoundId:Play()
musicSoundId.Ended:wait()
musicSoundId = "rbxassetid://"..sound2
musicSoundId:Play()
musicSoundId.Ended:wait()
musicSoundId = "rbxassetid://"..sound3
musicSoundId:Play()
musicSoundId.Ended:wait()
musicSoundId = "rbxassetid://"..sound4
musicSoundId:Play()
musicSoundId.Ended:wait()
musicSoundId = "rbxassetid://"..sound5
musicSoundId:Play()
musicSoundId.Ended:wait()
end
Thanks for reading!