Clear UI

Press R to Disable UI when spectating someone

// ==UserScript==
// @name        Clear UI
// @author      Altanis
// @namespace   Press R to Disable UI when spectating someone
// @description Press R to Disable UI when spectating someone
// @version     1.0.0
// @match       *://diep.io/
// @grant       none
// ==/UserScript==

(function() {
    var toggle = true;

    document.addEventListener('keydown', function({ code }) {
        console.log(code);
       if (code === 'KeyR') {
          toggle = !toggle;
          input.execute(`ren_ui ${toggle}`);
       }
    });
})();