Krunker.io Aimbot

Krunker.io aimbot script

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Krunker.io Aimbot
// @namespace    https://krunker.io/
// @version      1.0
// @description  Krunker.io aimbot script
// @author       Punit Tiwari
// @match        https://krunker.io/
// @grant        none
// ==/UserScript==
var aimbot = {
enabled: true,
sensitivity: 1.0,
smoothness: 1.0
};
function toggleAimbot() {
aimbot.enabled = !aimbot.enabled;
if (aimbot.enabled) {
console.log('Aimbot ON');
} else {
console.log('Aimbot OFF');
}
}
function createToggleMenu() {
var menu = document.createElement('div');
menu.style.position = 'absolute';
menu.style.top = '0px';
menu.style.right = '0px';
menu.style.background = 'rgba(0, 0, 0, 0.5)';
menu.style.color = 'white';
menu.style.padding = '10px';
menu.style.fontSize = '18px';
menu.style.cursor = 'pointer';
menu.textContent = 'Aimbot: ON';
menu.onclick = function() {
toggleAimbot();
if (aimbot.enabled) {
menu.textContent = 'Aimbot: ON';
} else {
menu.textContent = 'Aimbot: OFF';
}
};
document.body.appendChild(menu);
}
setInterval(function() {
if (aimbot.enabled) {
var enemies = document.querySelectorAll('.player');
for (var i = 0; i < enemies.length; i++) {
var enemy = enemies[i];
var rect = enemy.getBoundingClientRect();
var x = rect.left + rect.width / 2;
var y = rect.top + rect.height / 2;
document.dispatchEvent(new MouseEvent('mousemove', { clientX: x, clientY: y }));
}
}
}, 10);
createToggleMenu();