Press space to change costumes. Click to make the clones move. Changing the sensitivity will increase the power with which the clones will shift. All remixes are showcased here: https://scratch.mit.edu/studios/50607430 EXPLANATION ---------------------------------------------------- The distance at which the circles move is determined using the pythagorean theorem, which states that in a right triangle, where the hypotenuse (longest side length) is 'c', the other two side lengths ('a' and 'b') squared and added is equal to c squared. The equation goes: a^2 + b^2 = c^2. Essentially, we are drawing a right triangle using the difference in the X and Y values of the clones compared to your cursor's position. Then, we find the length of the hypotenuse using the pythagorean theorem. This number is the distance between the clone and you cursor, and from there we can calculate the distance to move the clone.
Thank you to Heldlaw for creating the original clone grid. It's surprisingly unintuitive yet functional.