You can write your topic however you want, but you need to answer these questions:
- How do I make an audio playlist loop after its done?
2.I dont no how to make an audio play list loop?
- I have tried some but none of them happen to work?
You can write your topic however you want, but you need to answer these questions:
2.I dont no how to make an audio play list loop?
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