When I start my game there’s a story, and there’s sound that I applied. The problem is that when I change scene, the sound doesn’t stop… and I can’t put it in a group.
Her’s the code that I used::
local thunder = media.newEventSound( “Thunder.mp3” )
local function playBeep ()
media.playEventSound( thunder )
end
local tmr = timer.performWithDelay(5000, playBeep)