Game Preview

Clone Review

  •  English    11     Public
    Review Clone in Scratch
  •   Study   Slideshow
  • Which block will create a clone of a sprite?
    create clone of myself
  •  15
  • Which event will be used to program for clones?
    When I start as a clone
  •  15
  • Which block will be used to delete a clone?
    delete this clone
  •  15
  • When running the following program, how many clones will be created?
    10 clones (and 1 original sprite)
  •  20
  • When running the following program, how many clones will be created?
    The program creates clone FOREVER. However, Scratch only can create 300 clones
  •  20
  • Why do my clones not go to random positions and change their color?
    'When green flag clicked' is not the event for programming clones
  •  20
  • Which block helps sprite move slowly from one position to another position?
    glide ... secs to x:..., y:...
  •  15
  • Why the Time does not count down until 0 when the game starts?
    missing repeat block
  •  20
  • Can you fix the following program to make the sprite move left and right when the player presses the left/right arrow keys?
    right: chang x by [positive number]; left: change x by [negative number]
  •  20
  • How many times should we repeat to make the Time count down to 0?
    30
  •  20
  • Why the Time does not count down and it becomes 10 then -1 when the game starts?
    Because inside repeat block, we have "set time to -1" block (instead of change time by -1)
  •  20