Song playlist not working as intended

local ids = {0000, 0000} -- your song ids here
repeat wait()
    for i = 1, #ids do -- loops through the table
        local songObj = Instance.new("Sound")
        songObj.Parent = game:GetService("SoundService")
        local nowPlaying = ids[i]
        songObj.SoundId = "rbxassetid://"..nowPlaying
        songObj:Play()
        songObj.Ended:Wait()
        songObj:Destroy()
     end
until false

@jamies_coolio

4 Likes