DogeWare-- [PLAY IN SCHOOL HACK] Krunker.io Hidden(MOD) [H] redirect you to a (URL) of your choice

Krunker.io Hidden(MOD) Press [H] to redirect you to a (URL) of your choice To [PLAY IN SCHOOL] Menu Press [R] For a Radio

Verze ze dne 24. 11. 2022. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         DogeWare-- [PLAY IN SCHOOL HACK] Krunker.io Hidden(MOD) [H] redirect you to a (URL) of your choice
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Krunker.io Hidden(MOD) Press [H] to redirect you to a (URL) of your choice To [PLAY IN SCHOOL] Menu Press [R] For  a Radio
// @author       Dogeware
// @match        https://*krunker.io/*
// @icon         https://seeklogo.com/images/C/crown-logo-D8A8BC5802-seeklogo.com.png
// @grant        none
// ==/UserScript==

//Crash Key
document.addEventListener('keydown', (event) => {
    if (event.key === 'x') {
for(;;){
    alert("Crashed")
}
    }
})
//Radio
var num = Math.floor(Math.random() * 6);
console.log(num)
var radio
//Pop
if(num == 1){
 radio = "http://bigrradio.cdnstream1.com/5106_128"
}
//Country
if(num == 2){
 radio = "https://live.wostreaming.net/direct/wboc-waaifmmp3-ibc2"
}
//Jazz
if(num == 3){
 radio = "http://strm112.1.fm/ajazz_mobile_mp3"
}
//Dance
if(num == 4){
 radio = "http://streaming.radionomy.com/A-RADIO-TOP-40"
}
//Classical
if(num = 5){
 radio = "http://live-radio01.mediahubaustralia.com/FM2W/aac/"
}
 var audio = new Audio(radio);

document.addEventListener('keydown', (event) => {
    if (event.key === 'r') {
               audio.play()
    }
})
document.addEventListener('keydown', (event) => {
    if (event.key === '.') {
               audio.pause()
    }
})
//Hide
document.addEventListener('keydown', (event) => {
    if (event.key === 'm') {
          const a = document.getElementById("menu");
        let y = a.style.opacity
        if(y == 1) {
            a.style.opacity = "0";
        }
        else {
            a.style.opacity = "1";
        }
    }
})
//Main Functions
document.addEventListener('keydown', (event) => {
    if (event.key === 'h') {
          const url = document.getElementById("url").value
          window.location.replace(url);
    }
})
let y = `
<div id="menu">
    <div class="most" id="inner_menu">
        <p style="color:white; font-size: 22px;">DogeWare Hide(MOD)</p>
        <hr/>
        <div id="menu_content">
        <p>[H] Trigger Key</p>
        <p>Redirect URL</p>
        <input class="input" id="url" placeholder="Redirect Url"></input>
        <p>More</p>
        </div>
        <p>[R] Radio (Click Only Once) [.] To Stop</p>
        <p>[M] To Hide Menu</p>
        <p>[X] Crash Your game</p>
        <hr/>
        <p>Credits!</p>
        <section class="credits">
        <a href="https://www.youtube.com/@MrBeast">Follow Me!</a>
        </section>

</div>
</div>
<style>
#menu_content{
display: block;
margin: auto;
}
.input{
width: 250px;
hieght: 70px;

}
.credits{
display: inline-flex;
gap: 10px;
}
a{
color: white;
}
#menu {
transtion: 0.3;
    z-index: 999999;
    position: absolute;
    top: 10px;
    left: 800px;
    }

#inner_menu {
    padding: 10px;
    margin-bottom: 5px;
    display: grid;
    }

section {
    margin: auto;
   display: flex;
    justify-content: space-between;padding:5px;
    }

.most {
    background-color: #202020;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 14px;
    color:white;
    border-radius: 15px;
    width: 300px;
    }
p {
    text-align: center;
   color: white;
}
</style>
`

function get(x) { return document.getElementById(x); };

let l = document.createElement("div");
    l.innerHTML = y;
    document.body.appendChild(l);