Krunker.io ESP [Currently Outdated]

Simple ESP script for krunker.io (featuring AD-block enhancer)

  1. // ==UserScript==
  2. // @name Krunker.io ESP [Currently Outdated]
  3. // @namespace https://greasyfork.org/en/users/817964
  4. // @homepage https://www.patreon.com/tech2survive
  5. // @version outdated - 3.7
  6. // @description Simple ESP script for krunker.io (featuring AD-block enhancer)
  7. // @author Hidden_X
  8. // @include *://krunker.io/*
  9. // @include *browserfps.com*
  10. // @exclude *://krunker.io/games.html
  11. // @exclude *://krunker.io/social.html*
  12. // @run-at document-start
  13. // @require https://greasyfork.org/scripts/18490-ads-dom-remover-runner/code/Ads%20DOM%20Remover%20Runner.js?version=983896
  14. // @license GNU General Public License v2.0
  15. // @donate https://www.patreon.com/tech2survive
  16. // @grant none
  17. // ==/UserScript==
  18.  
  19. // ESP code
  20. Object.defineProperty(Object.prototype, 'cnBSeen', {value: true, enumerable: false}); // "cnBSeen" current nametags variable
  21.  
  22. // UI elements
  23. const titles = ["Krunker | Simple ESP", "Made by Hidden_X"];
  24. let i = 0;
  25.  
  26. setInterval(() => {
  27. i = i % 2; // <-- number of titles
  28. document.title = titles[i];
  29. i++;
  30. }, 1250); // <-- delay between each title (ms)
  31.  
  32.  
  33.  
  34.  
  35. /*
  36. Developed by Hidden_X
  37. - on behalf of Tech2Survive
  38.  
  39. This is an open-source and copyright-free project. You can use and modify it as you wish.
  40. Warning: Any attempts of reuploading it without permission from the original creator (Hidden_X) will be taken down by GreasyFork as it goes against it's TOS!
  41.  
  42. · Copyright is for cowards ·
  43.  
  44. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  45.  
  46. Consider Donating: https://www.patreon.com/tech2survive
  47. Thank you :)
  48. */