foes.io autospawn

Auto spawner for foes.io, press 'c' to start

// ==UserScript==
// @name         foes.io autospawn
// @namespace    http://foes.io/*
// @version      1.02
// @description  Auto spawner for foes.io, press 'c' to start
// @author       Meatman2tasty
// @match        https://foes.io/*
// @grant        none
// ==/UserScript==

document.addEventListener("keydown", function(a) { // Press 'z' to start auto jump
    if (a.keyCode == 67) {
setInterval(enterGame(0), 10000);
    }
}, false);