Use the arrow keys to move the camera. This is a somewhat glitchy test with an automated agar.io like game. It doesn't use real AI (like machine learning), but instead just uses a very simple method using math. Each blob checks the location difference of each other blob and weights it with the size difference, so that it avoids bigger blobs and is attracted to smaller blobs, to create a direction vector to face. This vector is normalized and multiplied to created an X and Y acceleration. After that the X and Y acceleration is added to a random variable. The random variable is to keep the blobs from just moving off towards infinity. This is probably the simplest method usable that isn't just random motion. To create a real game using this, the collision system would have to be fixed, and a bounds might want to be imposed.