function onGrab() -- trueならオーディオをループ再生、falseなら1回だけ再生 local audioLoop = true -- 0 から 1 の間で音量を指定 local audioVolume = 0.5 -- AudioIndex0 をループ再生する print("StartPlaying Audio") vci.assets.audio.PlayFromIndex(0, audioVolume, audioLoop) end function onUse() local currentTime = vci.assets.audio.GetCurrentTimeFromIndex(0) print("currentTime: "..tostring(currentTime)) end