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}`);
       }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址