Okay so I learned this storyboard thingy using this code.My whole code till now.
local physics = require “physics”
physics.start()
local homescreen = display.newImage( “TVGS.png” )
local play = display.newImage( “play.png”, 25 , 130 )
local gameMusic = audio.loadStream( “BackgroundMusic.mp3” )
local gameMusicChannel = audio.play( gameMusic, { loops = -1 } )
local storyboard = require “storyboard”
storyboard.gotoScene(“level1”)
So what this does is bring up the first scene in which there is a play button.Now what I want is that when a person hits the play button the scene changes.What should I do.
Will keep asking more question as my game idea is tough.Please please please help fast.
