Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/9cad5cfc4f9813ffe08415a3be5e9a48.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Less Lag BRO
// @namespace QWERTYUIOP
// @version 0.2
// @description When you press 'Caps Lock', the gui will be removed.Then when you let go it will be removed until you press caps lock again.
// @author /u/вάŕήίάή
// @match *://*.diep.io/*
// @downloadURL https://update.greasyfork.icu/scripts/368167/Less%20Lag%20BRO.user.js
// @updateURL https://update.greasyfork.icu/scripts/368167/Less%20Lag%20BRO.meta.js
// ==/UserScript==
// Script made by /u/вάŕήίάή
document.addEventListener('keydown',function(event){
if(event.keyCode==20){
input.set_convar("ren_ui", true);
}
});
document.addEventListener('keyup',function(event){
if(event.keyCode==20){
input.set_convar("ren_ui", false);
}
});