// ==UserScript== // @name Diep.io Working AUTOBUILD! // @namespace http://tampermonkey.net/ // @version 1.8 // @description
AbyssOra#0100 Friend me on my discord and to have a change to join my diep.io discord server! This is a work in progress!
You can change the scripts to what you want. Also try my XandY mod! Try to take over the diep.io!
How to use: You should see a gray bar on the right side of the screen, hover over it and the menu will slide out!
// @author -{Abyss⌬}-ora // @match https://diep.io/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //-------------------------------------[AUTOBUILD BUTTON]------------------------------------\\ var textG = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(textG); textG.innerHTML = ` ` function keydownFunction() { var x = document.getElementById("myhover"); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } } document.body.onkeyup=function(e){ if(e.keyCode===82){ keydownFunction(); } } var tgl = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(tgl); tgl.style = "position:absolute; pointer-events: none; top:100px; right:50px; font-family: 'Monoton', cursive; color: #FFFFFF; font-size: 20px; text-shadow: black 0px 1px, purple 0px 2px, pink 0px 3px"; tgl.innerHTML = `Press (R) to
toggle Menu
` //-------------------------------------[TESTING IDEA AREA]----------------------------------------\\ })();