"Catch the Falling Apples" game in MakeCode Arcade using blocks.

 

"Catch the Falling Apples" game in MakeCode Arcade using blocks.

MakeCode Arcade is a great platform for kids to create simple games using a block-based editor! Here are some fun beginner-friendly projects with step-by-step ideas:

Let's create a step-by-step "Catch the Falling Apples" game in MakeCode Arcade using blocks. This is a simple game where the player moves a basket left and right to catch falling apples.


Features in This Game

  • Player moves a basket left and right to catch apples       
  • Apples fall from random positions at the top
  • Score increases when catching an apple
  • Player loses a life if an apple reaches the bottom
  • Game ends when lives reach 0

Catch the Falling Apples

Concepts: Sprites, Movement, Collision, Score

Step-by-Step Guide

Step 1: Create the Player (Basket)

  • Go to MakeCode Arcade.
  • Click New Project and give it a name like Catch Apples.
  • In the Sprites category, drag "set mySprite to sprite of kind Player" to the on start block.
  • Click the gray box to draw a basket or choose an image from the gallery.
  • From Controller, add "Move mySprite with buttons" so the player can move left/right.

Step 2: Create Falling Apples

In Game Update Every 1000ms, add:

  • "set apple to sprite of kind Food" → Draw or choose an apple sprite.
  • "set apple position to pick random X (10 to 150), Y = 0" (randomize falling start)
  • "set velocity Y of apple to 50" (makes the apple fall).

Step 3: Catch the Apples

From Sprites, use "On sprite of kind Player overlaps with sprite of kind Food".

Inside, add:

  • "Change score by 1" (increase points).
  • "Destroy apple" (remove caught apple).

Step 4: Game Over Condition

In Sprites, use "On sprite of kind Food overlaps with bottom of screen".

Inside, add:

  • "Change life by -1" (lose life if missed).
  • "Destroy apple".

In on start, add "set life to 3".

Step 5: Winning & Losing

From Game, use "If life = 0 → game over lose."

Add sounds when catching apples for fun effects.


This Content Sponsored by Buymote Shopping app

BuyMote E-Shopping Application is One of the Online Shopping App

Now Available on Play Store & App Store (Buymote E-Shopping)

Click Below Link and Install Application: https://buymote.shop/links/0f5993744a9213079a6b53e8

Sponsor Content: #buymote #buymoteeshopping #buymoteonline #buymoteshopping #buymoteapplication



Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.