Greasy Fork

Greasy Fork is available in English.

Bloxd.io Void-Cheat (Vape-Style UI + Draggable)

A powerful, overpowered hack for Bloxd.io! Features like FightBot, Aimbot, Speed, and more! Use at your own risk!

当前为 2025-09-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         Bloxd.io Void-Cheat (Vape-Style UI + Draggable)
// @namespace    http://tampermonkey.net/
// @version      1.6
// @description  A powerful, overpowered hack for Bloxd.io! Features like FightBot, Aimbot, Speed, and more! Use at your own risk!
// @author       It_willl Suspect_XD Markwu 
// @match        *://bloxd.io/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // List of fake features (including new ones)
    const Features = [
        "FightBot", "Kill Aura", "Aimbot", "Speed", "High Jump", "No Movement",
        "Reach", "Speed Mine", "Bhop", "Click Aura", "Cape (Client-Side)",
        "Auto Build", "Wall Hack", "ESP", "Fly Mode", "Block Reach", "Anti-Knockback", "Auto Clicker"
    ];

    // Create the main panel (Vape-Style)
    const panel = document.createElement('div');
    panel.style.position = 'fixed';
    panel.style.top = '15px';
    panel.style.right = '15px';
    panel.style.width = '300px';
    panel.style.background = '#222';
    panel.style.borderRadius = '10px';
    panel.style.boxShadow = '0 0 20px rgba(0, 255, 0, 0.8)';
    panel.style.fontFamily = 'Arial, sans-serif';
    panel.style.zIndex = '9999';
    panel.style.display = 'none';  // Initially hidden
    panel.style.padding = '15px';
    panel.style.transition = 'all 0.2s ease';

    // Add the header bar (Vape-Style)
    const header = document.createElement('div');
    header.style.display = 'flex';
    header.style.justifyContent = 'space-between';
    header.style.alignItems = 'center';
    header.style.color = '#00FF00';
    header.style.fontWeight = 'bold';
    header.style.marginBottom = '10px';
    header.innerHTML = `
        <span style="font-size: 18px;">Void-Cheat</span>
        <span style="font-size: 12px; color: #777;">v1.6</span>
    `;
    panel.appendChild(header);

    // Add the Watermark (Void-client)
    const watermark = document.createElement('div');
    watermark.textContent = 'Void-client';
    watermark.style.position = 'absolute';
    watermark.style.bottom = '10px';
    watermark.style.right = '10px';
    watermark.style.fontSize = '14px';
    watermark.style.color = '#555';
    watermark.style.fontStyle = 'italic';
    panel.appendChild(watermark);

    // Create tabs for different categories
    const tabContainer = document.createElement('div');
    tabContainer.style.display = 'flex';
    tabContainer.style.marginBottom = '10px';
    tabContainer.style.borderBottom = '1px solid #444';
    panel.appendChild(tabContainer);

    // Tabs for "Combat," "Movement," "Visuals," etc.
    const tabs = ['Combat', 'Movement', 'Visuals', 'Extras'];
    const tabButtons = [];

    tabs.forEach((tab, index) => {
        const button = document.createElement('button');
        button.textContent = tab;
        button.style.flex = '1';
        button.style.padding = '8px';
        button.style.background = '#333';
        button.style.color = '#0f0';
        button.style.border = 'none';
        button.style.fontSize = '14px';
        button.style.cursor = 'pointer';
        button.style.transition = 'background 0.2s';
        button.style.borderTopLeftRadius = index === 0 ? '10px' : '0';
        button.style.borderTopRightRadius = index === tabs.length - 1 ? '10px' : '0';
        button.onmouseenter = () => button.style.background = '#444';
        button.onmouseleave = () => button.style.background = '#333';
        
        // When a tab is clicked, toggle the visibility of the corresponding section
        button.onclick = () => {
            sectionContainers.forEach((container, i) => {
                container.style.display = i === index ? 'block' : 'none';
            });
        };
        
        tabContainer.appendChild(button);
        tabButtons.push(button);
    });

    // Add feature toggles (with collapsible sections)
    const sectionContainers = [];
    tabs.forEach((tab, index) => {
        const sectionContainer = document.createElement('div');
        sectionContainer.style.display = index === 0 ? 'block' : 'none';
        sectionContainers.push(sectionContainer);
        panel.appendChild(sectionContainer);

        const featureStartIndex = index * 5; // Roughly divide features among tabs
        const featureEndIndex = featureStartIndex + 5;
        const sectionFeatures = fakeFeatures.slice(featureStartIndex, featureEndIndex);

        sectionFeatures.forEach(feature => {
            const btn = document.createElement('button');
            btn.textContent = `${feature}: OFF`;
            btn.style.display = 'block';
            btn.style.margin = '6px 0';
            btn.style.padding = '8px';
            btn.style.cursor = 'pointer';
            btn.style.background = '#333';
            btn.style.color = '#0f0';
            btn.style.border = '1px solid #00FF00';
            btn.style.borderRadius = '4px';
            btn.style.fontSize = '13px';
            btn.style.transition = 'background 0.2s';

            btn.onmouseenter = () => btn.style.background = '#444';
            btn.onmouseleave = () => btn.style.background = '#333';

            // Button click handler (toggles feature state)
            btn.onclick = () => {
                if (btn.textContent.endsWith("OFF")) {
                    btn.textContent = `${feature}: ON`;
                    console.log(`[FAKE CHEAT] ${feature} activated`);
                } else {
                    btn.textContent = `${feature}: OFF`;
                    console.log(`[FAKE CHEAT] ${feature} deactivated`);
                }
            };
            sectionContainer.appendChild(btn);
        });
    });

    // Append the panel to the page
    document.body.appendChild(panel);

    // Make the panel draggable
    let isDragging = false;
    let offsetX, offsetY;

    header.addEventListener('mousedown', (e) => {
        isDragging = true;
        offsetX = e.clientX - panel.offsetLeft;
        offsetY = e.clientY - panel.offsetTop;
        document.addEventListener('mousemove', dragPanel);
        document.addEventListener('mouseup', () => {
            isDragging = false;
            document.removeEventListener('mousemove', dragPanel);
        });
    });

    function dragPanel(e) {
        if (isDragging) {
            panel.style.left = `${e.clientX - offsetX}px`;
            panel.style.top = `${e.clientY - offsetY}px`;
        }
    }

    // Toggle the cheat menu with the 'L' key
    document.addEventListener('keydown', function(event) {
        if (event.key === 'L' || event.key === 'l') {
            panel.style.display = panel.style.display === 'none' ? 'block' : 'none';
            console.log("[Void-CHEAT] Cheat menu toggled");
            console.log("[Void-CHEAT] WARNING: This is an overpowered, unstoppable hack for Bloxd.io!");
        }
    });

    // Log when the script is loaded (in console)
    console.log("%c[Void-Cheat] Loaded successfully! Press 'L' to toggle the cheat menu.", "color: lime; font-weight: bold;");
    console.log("%c[Void-Cheat] WARNING: This is an overpowered, unstoppable hack for Bloxd.io! Use at your own risk!", "color: red; font-weight: bold;");
})();