Spam kill

wow

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Spam kill
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  wow
// @author       LongName
// @match        https://agarpowers.xyz/
// @icon         https://i.imgur.com/hS3gXVD.gif
// @grant        none
// ==/UserScript==


       var LongNameScriptBtn = document.createElement("div");
       LongNameScriptBtn.innerHTML = '<div class="controlRow">LongName Script <input value="T" id="LongName ScriptID" oninput="toUpperCase()" class="controlBtn" role="button"></div>';
       controls.appendChild(LongNameScriptBtn);
       var portalKey = document.getElementById("portal");
       var antiRecKey = document.getElementById("antirecombine");
       var LongNameScriptInput = document.getElementById("LongName ScriptID");
        function portal() {
            var letterP = portalKey.innerText;
            var PortalkeyCode = letterP.charCodeAt(0);
            $("#canvas").trigger($.Event("keydown", { keyCode: PortalkeyCode })); // Portal KeyCode
            $("#canvas").trigger($.Event("keyup", { keyCode: PortalkeyCode })); // Portal KeyCode
        }
        function antiRec() {
            var letter2 = antiRecKey.innerText;
            var antimergekeyCode = letter2.charCodeAt(0);
            $("#canvas").trigger($.Event("keydown", { keyCode: antimergekeyCode })); // AntiRecombine KeyCode
            $("#canvas").trigger($.Event("keyup", { keyCode: antimergekeyCode })); // AntiRecombine KeyCode
        }

        var LongNameScript = parseInt(localStorage.getItem("LongName ScriptKeyCode")) || 84; // Attack-Two KeyCode (portal + antirec)
        portalKey.addEventListener("click", function(event) {
            portal();
        });
        window.addEventListener('keydown', function(event) {
            if (event.keyCode == LongNameScript) {
                portal();
                setTimeout(virus, 100);
                setTimeout(antiRec, 200);

            }
        });