Help with Unity exporting

Hello, I am currently trying to create Minesweeper in Unity.
I have everything working inside the editor (effects, clicking squares, etc.) and the game is playable.
However when I export the game using File > Build and Run nothing happens when I click tiles.
Here are my build settings: build settings

And here is what it looks like (exported on left, in editor on right):

I am fairly new to Unity and I haven’t been able to find a solution online anywhere.
I can post my code too if it is needed.
Thanks

Something’s going wrong. When building, check “development build” this will pop up a console in the exe’s window with any errors. There’s also a output_log.txt file in the data folder for the build. Check them for errors and let us know what you see. After that we may be able to help you pinpoint the issue.

I have found the solution to my problem:
The issue was using collider.tag == "Tile" when I should have been using collider.CompareTag("Tile")
I am using Unity 5.4.1f1 if it is a version issue.
Additionally, the tags in the editor were not saved. Initially I had defined my tag by clicking the gameObject > Tag > Add Tag...
Defining the tag using Edit > Project Settings > Tags and Layers saved them properly when building the game.
Exporting the game as Developer Build is very useful for debugging.
Thanks for the help :slight_smile: