of     1   

Dex1nonly
#1161407Saturday, May 31, 2008 12:33 AM GMT

Can someone give me a script that does the same things as the regular one, but also changes to another song when the first one is finished playing, like a playlist so I can loop multiple songs together. BTW, I don't know how to script so, yeah.
erikrules
#1162213Saturday, May 31, 2008 1:35 AM GMT

hey thats a good idea!
Dex1nonly
#1163616Saturday, May 31, 2008 3:30 AM GMT

Help, please.
Kaze
#1164046Saturday, May 31, 2008 4:05 AM GMT

Put 3 sounds into the script. Make sure the sounds are ones that have been uploaded to ROBLOX. Other sounds WILL NOT WORK. p = script.Parent s1 = p.Sound1 s2 = p.Sound2 s3 = p.Sound3 while true do wait(1) local m = math.random(1,3) if m == 1 then s1:Play() if m == 2 then s2:Play() if m == 3 then s3:Play() end end end end

    of     1