bloxd.io Killaura, Flyhacks, Autoclick, Esp, No hit cooldown, infinite health, set damage

Bloxd.io Killaura, Flyhacks, Autoclick, Esp, No hit cooldown, infinite health, set damage

// ==UserScript==
// @name         bloxd.io Killaura, Flyhacks, Autoclick, Esp, No hit cooldown, infinite health, set damage
// @namespace    https://bloxd.io
// @version      1.0.1
// @description  Bloxd.io Killaura, Flyhacks, Autoclick, Esp, No hit cooldown, infinite health, set damage
// @author       Gradyruan
// @match        https://staging.bloxd.io/*
// @match        https://bloxd.io/*
// @grant        none
// @license MIT
// ==/UserScript==
 
(async function () {
    const LEFT_CLICK_TOGGLE_KEY = 'KeyR';
    const RIGHT_CLICK_TOGGLE_KEY = 'KeyF';
    let minCPS = 10, maxCPS = 15;
    const TARGET_SELECTOR = "#noa-canvas";
    
    let autoLeftClickEnabled = false;
    let autoRightClickEnabled = false;
    let autoLeftClickInterval;
    let autoRightClickInterval;
 
    console.log("Auto Clicker loaded. Press 'R' for Left Click, 'F' for Right Click.");
 
    document.addEventListener("keydown", function (event) {
        if (event.repeat || event.target.tagName === 'INPUT' || event.target.tagName === 'TEXTAREA' || event.target.isContentEditable) return;
        if (event.code === LEFT_CLICK_TOGGLE_KEY) toggleAutoLeftClick();
        if (event.code === RIGHT_CLICK_TOGGLE_KEY) toggleAutoRightClick();
    });
 
    function randomInterval() {
        return 1000 / (Math.random() * (maxCPS - minCPS) + minCPS);
    }
 
    function toggleAutoLeftClick() {
        if (autoRightClickEnabled) stopRightClicker();
        autoLeftClickEnabled ? stopLeftClicker() : startLeftClicker();
    }
 
    function startLeftClicker() {
        autoLeftClickEnabled = true;
        console.log("Auto LEFT-Clicker ENABLED");
        autoLeftClickInterval = setInterval(() => simulateClick(0), randomInterval());
    }
 
    function stopLeftClicker() {
        clearInterval(autoLeftClickInterval);
        autoLeftClickEnabled = false;
        console.log("Auto LEFT-Clicker DISABLED");
    }
 
    function toggleAutoRightClick() {
        if (autoLeftClickEnabled) stopLeftClicker();
        autoRightClickEnabled ? stopRightClicker() : startRightClicker();
    }
 
    function startRightClicker() {
        autoRightClickEnabled = true;
        console.log("Auto RIGHT-Clicker ENABLED");
        autoRightClickInterval = setInterval(() => simulateClick(2), randomInterval());
    }
 
    function stopRightClicker() {
        clearInterval(autoRightClickInterval);
        autoRightClickEnabled = false;
        console.log("Auto RIGHT-Clicker DISABLED");
    }
 
    function simulateClick(button) {
        let element = document.querySelector(TARGET_SELECTOR);
        if (!element) return;
        element.dispatchEvent(new MouseEvent("mousedown", { button, bubbles: true, cancelable: true, view: window }));
        element.dispatchEvent(new MouseEvent("mouseup", { button, bubbles: true, cancelable: true, view: window }));
        if (button === 0) element.dispatchEvent(new MouseEvent("click", { button, bubbles: true, cancelable: true, view: window }));
        if (button === 2) element.dispatchEvent(new MouseEvent("contextmenu", { button, bubbles: true, cancelable: true, view: window }));
    }
 
    function clearCookies() {
        // Clear all cookies to simulate account generation
        document.cookie.split(";").forEach(cookie => {
            document.cookie = cookie.split("=")[0] + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
        });
        console.log("Cookies cleared, new account can be generated.");
        setTimeout(() => {
            location.reload(); // Reload the page to trigger a new session/account
        }, 1000);
    }
 
    function createUI() {
        let ui = document.createElement("div");
        ui.innerHTML = `
            <div style="position: fixed; top: 10px; right: 10px; background: rgba(0, 0, 0, 0.7); color: white; padding: 10px; border-radius: 5px; z-index: 9999;">
                <button id="leftClickToggle">Left Click</button>
                <button id="rightClickToggle">Right Click</button>
                <button id="clearCookies">Gen Account</button>
                <br><br>
                <label>Min CPS: <input type="number" id="minCPS" value="10" min="1" max="50"></label>
                <label>Max CPS: <input type="number" id="maxCPS" value="15" min="1" max="50"></label>
            </div>
        `;
        document.body.appendChild(ui);
        document.getElementById("leftClickToggle").onclick = toggleAutoLeftClick;
        document.getElementById("rightClickToggle").onclick = toggleAutoRightClick;
        document.getElementById("clearCookies").onclick = clearCookies;
        document.getElementById("minCPS").onchange = (e) => minCPS = parseInt(e.target.value);
        document.getElementById("maxCPS").onchange = (e) => maxCPS = parseInt(e.target.value);
    }
 
    // Create UI only for PC, mobile is not supported.
    if (!/Mobi|Android/i.test(navigator.userAgent)) {
        createUI();
    }
})();

QingJ © 2025

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