Use the arrow keys to navigate Scratch Cat from the start of the maze to the end (yellow rectangle).
The problem with this program is that the cat should follow the path around the green blocks but he can walk through them. So at the end he is not doing the maze. First I started the game to see how it was working. Next I analyzed the scripts and there was no condition that stopped the cat from walking through the green blocks. So my solution was to use a forever loop with an "if then" and sensing block that if the cat touched the green color then the position of the cat would be his actual x and y positions minus 3 so that made him move 3 positions back from the green color. So then, the only way to complete the maze was forcing the cat to move freely only through the white until he got to the yellow block.