So I’m following atutorial and I get an error when I tap on an orb. Help please
local \_W = display.viewableContentWidth local \_H = display.viewableContentHeight display.setDefault("background", 1, 0.972549, 0.862745) local mRand = math.random local o = 0 local time\_remain = 10 local time\_up = false local total\_orb = 20 local ready = false local soundtrack = audio.loadStream ("refangold.mp3") local pop\_sound = audio.loadSound("pop.mp3") local win\_sound = audio.loadSound("win.mp3") local fail\_sound = audio.loadSound("fail.mp3") local function trackOrbs(obj) obj:removeSelf() end local function spawnOrb() local orb = display.newImageRect("orb1.png", 60, 60) orb.x = mRand(40, \_W-40); orb.y = mRand(40, \_H-40) local function orbtouch(e) if(e.phase == "ended") then audio.play(pop\_sound) trackOrbs(self) end end orb:addEventListener("touch", orbtouch) end local tmr = timer.performWithDelay(20, spawnOrb, total\_orb)