of     1   

Mcrbxgaming
#141269643Wednesday, July 23, 2014 1:22 PM GMT

Say there is a table full of audio ids. One audio is playing. If it stops, how do I go to the next audio in the table.
AnonyAnonymous
#141269869Wednesday, July 23, 2014 1:25 PM GMT

You could try something such as, AudioTab = {SoundOne,SoundTwo} while wait() do if AudioTab[1].IsPlaying == false then AudioTab[2]:Play() end end You'll have to modify this however.
Mcrbxgaming
#141269926Wednesday, July 23, 2014 1:26 PM GMT

thanks

    of     1