Great original project by @CheckAgain, with a lot of effort! I just made this remix to answer their question about how the two parts of the name might be moved together, after they are randomized: https://scratch.mit.edu/users/RokCoder/#comments-211116795 There are several alternative ways this could be done, for instance: - You could right-align the words in the costumes in Sprite1, and left-align all the words in Sprite2. But that would mean a lot of work. - You could pre-calculate the length of each word (using a similar technique to that used in this remix), and store lengths in a list. This would be better if you don't want the animation seen in this remix. - Or, you can use the move & touching sprite-blocks to move the two words until they are touching, and then move them back a bit. That's what I did for this remix, because it's a simple solution, and because I thought it looked cool. @CheckAgain, feel free to use any code in this project, or any of the ideas mentioned above.