Krunker.io Mod Menu

A stunning mod menu that ruins the cheater's experience with cheats and beautiful pop-ups

  1. // ==UserScript==
  2. // @name Krunker.io Mod Menu
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description A stunning mod menu that ruins the cheater's experience with cheats and beautiful pop-ups
  6. // @author You
  7. // @match ://krunker.io/
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // HTML for the stunning mod menu
  15. const menuHTML = `
  16. <div id="modMenu" class="mod-menu">
  17. <div class="menu-header">
  18. <h1>Krunker.io Mod Menu</h1>
  19. <button id="closeMenu" class="close-btn">X</button>
  20. </div>
  21. <div class="options">
  22. <button id="aimbot" class="option-btn">Activate Aimbot</button>
  23. <button id="speedHack" class="option-btn">Activate Speed Hack</button>
  24. <button id="wallHack" class="option-btn">Activate Wall Hack</button>
  25. </div>
  26. </div>
  27. `;
  28.  
  29. // Add the mod menu HTML to the page
  30. document.body.insertAdjacentHTML('beforeend', menuHTML);
  31.  
  32. // CSS for styling the mod menu
  33. GM_addStyle(`
  34. * {
  35. margin: 0;
  36. padding: 0;
  37. box-sizing: border-box;
  38. }
  39.  
  40. body {
  41. font-family: 'Arial', sans-serif;
  42. }
  43.  
  44. /* Mod Menu Styles */
  45. .mod-menu {
  46. position: fixed;
  47. top: 15%;
  48. left: 50%;
  49. transform: translateX(-50%);
  50. background: linear-gradient(145deg, #4a4e69, #2a2d3e);
  51. padding: 25px;
  52. border-radius: 20px;
  53. box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  54. width: 300px;
  55. z-index: 9999;
  56. opacity: 0;
  57. animation: slideIn 1s ease-out forwards;
  58. }
  59.  
  60. @keyframes slideIn {
  61. from {
  62. transform: translateX(-50%) scale(0);
  63. opacity: 0;
  64. }
  65. to {
  66. transform: translateX(-50%) scale(1);
  67. opacity: 1;
  68. }
  69. }
  70.  
  71. .menu-header {
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. margin-bottom: 20px;
  76. }
  77.  
  78. .menu-header h1 {
  79. font-size: 22px;
  80. font-weight: bold;
  81. color: #f8f9fa;
  82. }
  83.  
  84. .close-btn {
  85. background-color: #f04e23;
  86. color: white;
  87. border: none;
  88. padding: 8px 16px;
  89. border-radius: 50%;
  90. cursor: pointer;
  91. transition: background-color 0.3s ease;
  92. }
  93.  
  94. .close-btn:hover {
  95. background-color: #d43f1b;
  96. }
  97.  
  98. .options {
  99. display: flex;
  100. flex-direction: column;
  101. gap: 15px;
  102. }
  103.  
  104. .option-btn {
  105. padding: 12px 18px;
  106. background: linear-gradient(145deg, #f8b400, #f8a300);
  107. border: none;
  108. border-radius: 50px;
  109. color: white;
  110. font-size: 16px;
  111. cursor: pointer;
  112. transition: transform 0.3s ease, background-color 0.3s ease;
  113. }
  114.  
  115. .option-btn:hover {
  116. background-color: #f89800;
  117. transform: scale(1.05);
  118. }
  119.  
  120. .option-btn:active {
  121. transform: scale(0.95);
  122. }
  123.  
  124. /* Cheat Pop-up Styles */
  125. .popup {
  126. position: fixed;
  127. top: 50%;
  128. left: 50%;
  129. transform: translate(-50%, -50%);
  130. background: rgba(0, 0, 0, 0.8);
  131. color: #fff;
  132. padding: 20px 30px;
  133. border-radius: 10px;
  134. font-size: 18px;
  135. display: none;
  136. z-index: 10000;
  137. box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  138. animation: popupAnim 1s ease-out forwards;
  139. }
  140.  
  141. @keyframes popupAnim {
  142. from {
  143. transform: translate(-50%, -50%) scale(0);
  144. opacity: 0;
  145. }
  146. to {
  147. transform: translate(-50%, -50%) scale(1);
  148. opacity: 1;
  149. }
  150. }
  151.  
  152. .popup.show {
  153. display: block;
  154. }
  155. `);
  156.  
  157. // Create the popup element to show when a cheat is activated
  158. const popup = document.createElement('div');
  159. popup.classList.add('popup');
  160. document.body.appendChild(popup);
  161.  
  162. // JavaScript to simulate fake cheats (anti-cheat ruining gameplay)
  163. function showPopup(message) {
  164. popup.textContent = message;
  165. popup.classList.add('show');
  166. setTimeout(() => {
  167. popup.classList.remove('show');
  168. }, 2000); // Show the popup for 2 seconds
  169. }
  170.  
  171. // Activate Aimbot (Fake)
  172. function activateAimbot() {
  173. showPopup("Aimbot Activated! Your aim is now uncontrollable!");
  174. console.log("Fake aimbot running - aim is going crazy.");
  175. // Add fake aimbot effect (e.g., make the aim jitter uncontrollably)
  176. }
  177.  
  178. // Activate Speed Hack (Fake)
  179. function activateSpeedHack() {
  180. showPopup("Speed Hack Activated! You're moving too fast!");
  181. console.log("Speed hack running - player moves uncontrollably fast.");
  182. // Add fake speed hack effect (e.g., player moves uncontrollably fast)
  183. }
  184.  
  185. // Activate Wall Hack (Fake)
  186. function activateWallHack() {
  187. showPopup("Wall Hack Activated! Visuals are glitching!");
  188. console.log("Wall hack running - causing visual glitches.");
  189. // Add fake wall hack effect (e.g., cause broken textures, see through walls)
  190. }
  191.  
  192. // Event Listeners for each cheat
  193. document.getElementById('aimbot').addEventListener('click', function() {
  194. activateAimbot();
  195. });
  196.  
  197. document.getElementById('speedHack').addEventListener('click', function() {
  198. activateSpeedHack();
  199. });
  200.  
  201. document.getElementById('wallHack').addEventListener('click', function() {
  202. activateWallHack();
  203. });
  204.  
  205. // Close the mod menu
  206. document.getElementById('closeMenu').addEventListener('click', function() {
  207. document.getElementById('modMenu').style.display = 'none';
  208. });
  209. })();

QingJ © 2025

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