Game Is Hard Level 207 Breakdown
What You See
Several cups hold stacks of colored blocks, with empty cups available as buffer space. The instruction reads “all in a single cup,” and a warning adds: “terrible things will happen if you mix red with blue.”
The blocks are the classic water-sort style — you can only move the top block of a stack onto an empty spot or a matching color. But here the matching rule has a poison clause: red + blue = black, which is a failure state.
Why You're Stuck
I tried to just pour everything into one cup as fast as possible, and blocks kept turning black. I’d mix red and blue by dropping one on the other, and the cup would poison itself. I couldn’t see how to get to “all in one” without ever letting red touch blue.
The key was using the empty cups as staging. Separate the colors completely first, then merge same-colored blocks together, and only at the very end combine the full color stacks into one cup in a way that never puts red directly into blue. It’s a careful sorting puzzle, not a fast one.
The Answer
Use the empty cups as buffers to sort the blocks by color without ever dropping red onto blue (which turns the stack black). Once each color is grouped, consolidate the groups into a single cup so the final stack keeps red and blue from touching. The level completes when everything is in one cup with no black blocks.
How to Beat It
- Sort by color first. Use empty cups to separate red, blue, and any other colors into their own stacks.
- Never drop red onto blue. If a red block would land on a blue block, move it to an empty cup instead.
- Group like colors. Consolidate matching colors into clean stacks.
- Merge into one cup last. Combine the sorted stacks into a single cup, keeping the red/blue boundary safe.
Troubleshooting
- Blocks keep turning black: you’re dropping red onto blue (or blue onto red). Move to an empty cup instead — black is a failure state.
- Can’t move a buried block: only the top block of a stack moves. Free buried colors by moving blocks off the top first.
- Not enough empty cups: keep one cup empty as your buffer. Move stacks methodically so you always have a spare slot.
Why It Works
The level takes the standard water-sort mechanic and adds a chemical penalty: red and blue react to produce black, which you must avoid entirely. That single rule transforms a routine sorting puzzle into a sequencing challenge, because you can’t just dump blocks — you have to plan moves so the two incompatible colors are always buffered by an empty cup. The final “all in one” requirement then forces you to resolve the colors into a single, safe stack.
The Rule to Carry Forward
In a sort-to-one-target puzzle with a forbidden combination, use empty slots as buffers and sequence your moves so the incompatible pair never directly touches — consolidate only at the end.
- A “mixing” warning is a hard constraint: incompatible colors must never touch.
- Keep a buffer cup empty to stage blocks safely.
- Consolidate same colors before merging everything into one target.
Treat black as an instant fail and plan backward — merge the final single cup last, never mid-sort.
Dropping red onto blue to “save time.” Black is a failure — keep them separated until the very end.
Get the Official Game
Game Is Hard Level 207 FAQ
What happens if I mix red and blue in Game Is Hard Level 207?
The block turns black, which is a failure state. You must avoid ever dropping red onto blue or blue onto red.
How do I get everything in one cup in Game Is Hard Level 207?
Sort by color using empty cups as buffers, then merge the sorted stacks into one cup last, keeping red and blue from touching.
Why is a block stuck in Game Is Hard Level 207?
Only the top block of a stack can move. Free buried blocks by moving the blocks above them first.
More Game Is Hard Help
This is one guide in a complete Game Is Hard index — every stage we've solved is listed on the home page.