Audio Playlist Looped

You can write your topic however you want, but you need to answer these questions:

  1. How do I make an audio playlist loop after its done?

2.I dont no how to make an audio play list loop?

  1. I have tried some but none of them happen to work?

Maybe using:

While wait() do
    -- Your code here
end

Here! I made a script for you! Put this into your sound instance and configure it! Good luck!

--Script made by The_Woozoo
local Speaker = script.Parent
local SoundPlaylist = {
	"rbxassetid://3951847031",  --ZEROTWOOOOO
	"rbxassetid://279206904", --Alan Walker - Fade
	"rbxassetid://160442087" , --SPOOKY SCARY SKELETONS (100,000+ sales)
	"rbxassetid://279207008" --Alan Walker - Spectre
}

while wait() do
	for i = 1, #SoundPlaylist do
		Speaker.SoundId = SoundPlaylist[i]
		Speaker:Play()
		Speaker.Ended:Wait()
	end
end
3 Likes