SOUNDS IN LUA HELP..

hi,

I have created a game which requires sound, i currently have a sound file which is 30 seconds long i would like this file to play for a bit longer as it is going to be played during the game.

is there anyway i can do this??

You can loop.it. 

local music = audio.loadstream("game.mp3") audio.play(music,{channel=1,loops=-1})  

You can loop.it. 

local music = audio.loadstream("game.mp3") audio.play(music,{channel=1,loops=-1})