Object oriented programming is designed to hide state in an object and then provide a method (aka behavior) that modifies the state.
This is a very simple idea, but when combined with inheritance, interfaces, and other common design patterns allows for a very maintainable system.
The use of only static methods would prevent many of these design patterns from working, and so you would sacrifice maintainability, and extensibility of your system.