I'll disagree strongly with Arran's statement that UI testing is very unreliable. It absolutely doesn't have to be. Learning solid approaches to two main issues usually smooths out a lot of problems.
Intermittent failures are most often caused by synchronization issues around dynamic content, or locators which aren't flexible enough to handle changing conditions.
For example, you're extracting a row from a grid/table, and your locators are positional based. (3rd row, 5th cell) The sort order differs on one run, so the test breaks. Some server-side technologies like ASP.NET generate dynamic IDs which can vary, so that's another problem.
I'd encourage you to carefully evaluate your locators/selectors and see if they're robust. Avoid hardwired xpath, use IDs wherever possible--but make sure they aren't dynamic IDs and deal with them appropriately if they are.
You mentioned you've tried using an implicit wait. Make sure you understand the difference between implicit and explicit waits. (Read more here in Selenium docs.) It may be you need explicit waits for the exact conditions for the next steps in your scripts. Do not, repeat NOT use Thread.Sleep or similar manual delays in your tests except in extraordinary circumstances. WebDriver's Wait is a much better approach.