function draw() { } //Draw each sprite in order you want it to appear. var backgroundSprite = createSprite(209, 200); backgroundSprite.setAnimation("pine_trees"); //Set their animation and scale. //Go to the animation tab to modify images and make the character look like you. var kid = createSprite(300, 325); kid.setAnimation("kid"); kid.scale = 0.5; var sun = createSprite(330, 70); sun.setAnimation("sun"); sun.scale = 0.6; function draw() { //Drawing sprites in this function will make them animate. drawSprites(); //Have the character move with arrow keys. if(keyDown("right")){ kid.x = kid.x + 1; } if(keyDown("left")){ kid.x = kid.x - 2; } // ARROW} console.log("BET"); console.log("DONT DO IT") var group = createGroup(16); playSound("sound://https://www.youtube.com/watch?v=pM76LtznNrc", false); camera.on(); // Hey console.log("It's Alive!");