custum mc cursur w cooldownbar

Custom Bloxd Cursor

  1. // ==UserScript==C
  2. // @name custum mc cursur w cooldownbar
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Custom Bloxd Cursor
  6. // @author You
  7. // @match https://bloxd.io/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bloxd.io
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. setInterval(function() {
  14. const crosshair = document.querySelector(".CrossHair");
  15. if (crosshair) {
  16. crosshair.textContent = "";
  17. crosshair.style.backgroundImage = "url(https://piskel-imgstore-b.appspot.com/img/6472457d-c93a-11ee-82c8-174ef9ef89b7.gif)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. crosshair.style.width = "30px";
  21. crosshair.style.height = "30px";
  22. }
  23. }, 1000);