Nonexistent name in the current context, read-only property or indexer, and missing reference

Hello. I am having trouble with stuff in the code of my custom Match-3 game. These are the problems:


I don’t know what any of this means. Yeah, call me a noob, but I haven’t started using this until recently. Please help if all possible.

So…your property is trying to return ColorComponent…but there is no variable named ColorComponent, so it can’t return anything. That is your first error.

The awake error is trying to assign a value to colorComponent which refers back to the properly, however because your property only has a get and not a set, it can’t have a value assigned to it, that’s why it says it’s read only.

Thanks for that info, but what do I need to do?