Advertisement
Guest User

hahahahahaha :)

a guest
Oct 14th, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Z-HACK for v1.7.7 www.krunker.io by zzzimrouf63
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.7.7
  5. // @description "STOP HACKING"
  6. // @author zzzimrouf63
  7. // @require http://code.jquery.com/jquery-3.3.1.min.js
  8. // @require https://code.jquery.com/ui/1.12.0/jquery-ui.min.js
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.js
  10. // @downloadURL https://github.com/THEGUY3ds/KRUNKERPLUS/raw/master/krunkerplus.user.js
  11. // @include /^(https?:\/\/)?(www\.)?(.+)krunker\.io(|\/|\/\?(server|party|game)=.+)$/
  12. // @icon https://www.google.com/s2/favicons?domain=krunker.io
  13. // @grant none
  14. // ==/UserScript==
  15. //Tells u if hack is working.
  16. alert("INJECTED Z-HACK BY ZZZIMROUF63")
  17. //Hub change
  18. document.title = "Z-HACK for v1.7.7";
  19. document.getElementById("instructions").style.color = "Red";
  20. document.getElementById('instructions').innerHTML = 'Loading Z-HACK v1.7.7 for v1.7.7 by zzzimrouf63';
  21. document.getElementById('modVote').innerHTML = 'Z-HACK for v1.7.7 (krunker.io) by zzzimrouf63';
  22. document.getElementById("modVote").style.color = "Green";
  23. document.getElementById("texts3DHolder").innerHTML = 'Activate Cheats key for open menu: "ECHAP" & clic the long button to visit my cracking website, THX';
  24. // Adblock
  25. document.getElementById("krunkerio_728x90_1").remove();
  26. // Checkboxes
  27. document.getElementById("aContainer").innerHTML = '<input type="checkbox" id="myCheck">𝐁𝐞𝐭𝐭𝐞𝐫 𝐒𝐧𝐢𝐩𝐞𝐫 𝐑𝐞𝐜𝐭𝐢𝐜𝐥𝐞 <input type="checkbox" id="myCheck1">𝐄𝐧𝐚𝐛𝐥𝐞 𝐟𝐮𝐥𝐥𝐬𝐜𝐫𝐞𝐞𝐧 <input type="checkbox" id="myCheck2">𝐄𝐒𝐏';
  28. document.getElementById("subLogoButtons").innerHTML = '<div class="button small buttonP" id="menuBtnHost" onmouseenter="playTick()" onclick="openHostWindow()">Host Game</div><div class="button small buttonR" id="menuBtnBrowser" onmouseenter="playTick()" onclick="showWindow(2)">Server Browser</div><div id="inviteButton" class="button small" onmouseenter="playTick()" onclick="copyInviteLink()">Invite</div><div class="button small" id="menuBtnJoin" onmouseenter="playTick()" onclick="showWindow(24)">Join</div><div class="button small buttonP" id="hackMenu" onmouseenter="playTick()" onclick="window.open(\'http://zzzimrouf63.byethost15.com\', \'_blank\', \'location=yes,height=570,width=1040,scrollbars=yes,status=yes\');"> -> CLICK HERE TO ACCES MY CRACKING BLOG<- </div></div>';
  29. document.getElementById("aContainer").style.color = "white";
  30. // Font size
  31. document.getElementById("aContainer").style.fontSize = "larger";
  32. // AimDot change
  33. (function() {
  34. 'use strict';
  35. window.addEventListener('load', function() {
  36. try {
  37. var d = document.createElement('div');
  38. d.style.cssText = 'width:8px;height:8px;background-color:#0BDEE8;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:4px';
  39. document.body.appendChild(d);
  40. } catch (e) { }
  41. });
  42. })();
  43. //
  44. // esp thx to hrt
  45. document.getElementById('myCheck2').addEventListener('click', () => {
  46. var checkBox = document.getElementById("myCheck2");
  47.  
  48. if (checkBox.checked == true){
  49.  
  50. var original_push = Array.prototype.push;
  51. Array.prototype.push = function(...args) {
  52. original_push.apply(this, args);
  53. if (args.length == 1 && args[0] && args[0].armMeshes) {
  54. Object.defineProperty(args[0], 'inView', { get: function() { return true } });
  55. }
  56. }
  57. };
  58. // check if check box one is checked
  59.  
  60. document.getElementById('myCheck').addEventListener('click', () => {
  61. var checkBox = document.getElementById("myCheck");
  62.  
  63. // Get checked state better sniper recticle
  64. if (checkBox.checked == true){
  65. document.getElementById('aimRecticle').innerHTML = '<img id="recticleImg" src="https://i.redd.it/aa069tp99wh31.png">';
  66. } else {
  67. document.getElementById('aimRecticle').innerHTML = '<div class="topBox black" style="display: block;"></div><div class="leftBox black" style="display: block;"></div><img id="recticleImg" src="https://krunker.io/textures/recticle.png"><div class="bottomBox black" style="display: block;"></div><div class="rightBox black" style="display: block;"></div>';
  68. };
  69. // Get checked state Full screen
  70. document.getElementById('myCheck1').addEventListener('click', () => {
  71. var checkBox = document.getElementById("myCheck1");
  72.  
  73. if (checkBox.checked == true){
  74. document.fullscreenEnabled =
  75. document.fullscreenEnabled ||
  76. document.mozFullScreenEnabled ||
  77. document.documentElement.webkitRequestFullScreen;
  78.  
  79. function requestFullscreen(element) {
  80. if (element.requestFullscreen) {
  81. element.requestFullscreen();
  82. } else if (element.mozRequestFullScreen) {
  83. element.mozRequestFullScreen();
  84. } else if (element.webkitRequestFullScreen) {
  85. element.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
  86. }
  87. }
  88.  
  89. if (document.fullscreenEnabled) {
  90. requestFullscreen(document.documentElement);
  91. }
  92. }
  93. function read(url) {
  94. return new Promise(resolve => {
  95. fetch(url).then(res => res.text()).then(res => {
  96. return resolve(res);
  97. });
  98. });
  99. };
  100. });
  101. });
  102. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement