Study

Scratch Clone

  •   0%
  •  0     0     0

  • Which block will create a clone of a sprite?
    create clone of myself
  • What are the minimum and maximum of the y-axis?
    -180 and 180
  • What are the minimum and maximum of the x-axis?
    -240 and 240
  • Which block is missing from the program that prevents Taco from falling forever (even we put create clone of myself block inside forever block)?
    delete this clone (Scratch only can create 300 clones)
  • Which block will be used to delete a clone?
    delete this clone
  • Why do my clones not go to random positions and change their color?
    'When green flag clicked' is not the event for programming clones
  • Which event will be used to program for clones?
    When I start as a clone
  • When running the following program, how many clones will be created?
    10 clones (and 1 original sprite)
  • When running the following program, how many clones will be created?
    The program creates clone FOREVER. However, Scratch only can create 300 clones