[IN SCHOOL HACK] Krunker.io & Shellshockers Hidden(MOD) [H] redirect you to(URL) of your choice

Krunker.io & shellshockers Hidden(MOD) Press [H] to redirect you to a (URL) of your choice To [PLAY IN SCHOOL] Menu Press [R] For a Radio works For Shellshockers also works for some alterive URLs #Hack #krunker #Shellshockers #school #Hidden

  1. // ==UserScript==
  2. // @name [IN SCHOOL HACK] Krunker.io & Shellshockers Hidden(MOD) [H] redirect you to(URL) of your choice
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Krunker.io & shellshockers Hidden(MOD) Press [H] to redirect you to a (URL) of your choice To [PLAY IN SCHOOL] Menu Press [R] For a Radio works For Shellshockers also works for some alterive URLs #Hack #krunker #Shellshockers #school #Hidden
  6. // @author Dogeware
  7. // @match https://*krunker.io/*
  8. // @match *://shellshock.io/*
  9. // @match *://geometry.best/*
  10. // @match *://geometry.monster/*
  11. // @match *://geometry.pw/*
  12. // @match *://geometry.report/*
  13. // @match *://mathdrills.info/*
  14. // @match *://mathfun.rocks/*
  15. // @match *://mathgames.world/*
  16. // @match *://math.international/*
  17. // @icon https://seeklogo.com/images/C/crown-logo-D8A8BC5802-seeklogo.com.png
  18. // @grant none
  19. // ==/UserScript==
  20.  
  21. //Crash Key
  22. document.addEventListener('keydown', (event) => {
  23. if (event.key === 'x') {
  24. for(;;){
  25. alert("Crashed")
  26. }
  27. }
  28. })
  29. //Radio
  30. var playlist = [
  31. 'http://bigrradio.cdnstream1.com/5106_128',
  32. 'https://live.wostreaming.net/direct/wboc-waaifmmp3-ibc2',
  33. 'http://strm112.1.fm/ajazz_mobile_mp3',
  34. 'http://streaming.radionomy.com/A-RADIO-TOP-40',
  35. 'http://live-radio01.mediahubaustralia.com/FM2W/aac/',
  36. 'http://streams.90s90s.de/hiphop/mp3-128/',
  37. 'http://1a-classicrock.radionetz.de/1a-classicrock.mp3',
  38. 'http://bigrradio.cdnstream1.com/5187_128',
  39. 'http://streams.90s90s.de/hiphop/mp3-128/',
  40. 'http://0n-2000s.radionetz.de/0n-2000s.aac'
  41. ]
  42. console.log(playlist.length)
  43. var radio
  44. var player
  45. //Greater then 5 check
  46. if (playlist.length < playlist.length){
  47. alert("Radio Error... [Go to Console for details]")
  48. console.log(`Looks like there has been a Error the radio audio player went over playlist Compacity random Number Was ${playlist.length}`)
  49. return;
  50. }
  51. player = radio
  52. var rand = playlist[(Math.random() * playlist.length) | 0]
  53. player = rand
  54. var audio = new Audio(player);
  55.  
  56. document.addEventListener('keydown', (event) => {
  57. if (event.key === 'r') {
  58. audio.play()
  59. }
  60. })
  61. document.addEventListener('keydown', (event) => {
  62. if (event.key === '.') {
  63. audio.pause()
  64. }
  65. })
  66. //Hide
  67. document.addEventListener('keydown', (event) => {
  68. if (event.key === 'm') {
  69. const a = document.getElementById("menu");
  70. let y = a.style.opacity
  71. if(y == 1) {
  72. a.style.opacity = "0";
  73. }
  74. else {
  75. a.style.opacity = "1";
  76. }
  77. }
  78. })
  79. //Main Functions
  80. document.addEventListener('keydown', (event) => {
  81. if (event.key === 'h') {
  82. const url = document.getElementById("url").value
  83. window.location.replace(url);
  84. }
  85. })
  86. let y = `
  87. <div id="menu">
  88. <div class="most" id="inner_menu">
  89. <p style="color:white; font-size: 22px;">DogeWare Hide(MOD)</p>
  90. <hr/>
  91. <div id="menu_content">
  92. <p>[H] Trigger Key</p>
  93. <p>Redirect URL</p>
  94. <input class="input" id="url" placeholder="Redirect Url"></input>
  95. <p>More</p>
  96. </div>
  97. <p>[R] Radio (Click Only Once) [.] To Stop</p>
  98. <p>[M] To Hide Menu</p>
  99. <p>[X] Crash Your game</p>
  100. <hr/>
  101. <p>Credits!</p>
  102. <section class="credits">
  103. <a href="https://www.youtube.com/@MrBeast">Follow Me!</a>
  104. </section>
  105.  
  106. </div>
  107. </div>
  108. <style>
  109. #menu_content{
  110. display: block;
  111. margin: auto;
  112. }
  113. .input{
  114. width: 250px;
  115. hieght: 70px;
  116.  
  117. }
  118. .credits{
  119. display: inline-flex;
  120. gap: 10px;
  121. }
  122. a{
  123. color: white;
  124. }
  125. #menu {
  126. transtion: 0.3;
  127. z-index: 999999;
  128. position: absolute;
  129. top: 10px;
  130. left: 800px;
  131. }
  132.  
  133. #inner_menu {
  134. padding: 10px;
  135. margin-bottom: 5px;
  136. display: grid;
  137. }
  138.  
  139. section {
  140. margin: auto;
  141. display: flex;
  142. justify-content: space-between;padding:5px;
  143. }
  144.  
  145. .most {
  146. background-color: #202020;
  147. letter-spacing: 1px;
  148. font-weight: bold;
  149. font-size: 14px;
  150. color:white;
  151. border-radius: 15px;
  152. width: 300px;
  153. }
  154. p {
  155. text-align: center;
  156. color: white;
  157. }
  158. </style>
  159. `
  160.  
  161. function get(x) { return document.getElementById(x); };
  162.  
  163. let l = document.createElement("div");
  164. l.innerHTML = y;
  165. document.body.appendChild(l);