local _PauseAudio = true function onUse(use) if use == "Play" then vci.assets._ALL_PlayAudioFromName("bgm") end if use == "Pause" then vci.assets._ALL_PauseAudioFromName("bgm", _PauseAudio) _PauseAudio = not(_PauseAudio) end end