MT5 Client

NOT PATCHED created for Zbysz3Q air jump(bit buged) scafolld killaura trigerbot and others

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         MT5 Client
// @namespace    thenotismev2
// @version      1.0
// @description  NOT PATCHED created for Zbysz3Q air jump(bit buged) scafolld killaura trigerbot and others
// @match        *://*.bloxd.io/*
// @grant        none
// @license      just give credits bro
// @author       MT5 (vectarian)
// ==/UserScript==

(function () {
    'use strict';

    const style = document.createElement("style");
    style.innerHTML = `
    #mt5Menu {
        position: fixed;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        width: 280px;
        background: rgba(15,15,20,.95);
        color: #fff;
        border-radius: 16px;
        box-shadow: 0 0 40px rgba(0,0,0,.7);
        font-family: Arial, sans-serif;
        z-index: 99999;
        overflow: hidden;
    }
    #mt5Header {
        padding: 14px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        background: linear-gradient(90deg,#7f00ff,#00d4ff);
    }
    .section {
        padding: 10px 14px;
        border-top: 1px solid #222;
    }
    .section h3 {
        margin: 6px 0;
        font-size: 13px;
        color: #aaa;
        text-transform: uppercase;
    }
    .toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 6px 0;
        font-size: 13px;
    }
    .toggle input {
        accent-color: #7f00ff;
        cursor: pointer;
    }
    #mt5Btn {
        position: fixed;
        top: 20px;
        left: 20px;
        padding: 8px 14px;
        background: linear-gradient(90deg,#7f00ff,#00d4ff);
        color: #fff;
        border-radius: 10px;
        font-weight: bold;
        cursor: pointer;
        z-index: 99999;
        box-shadow: 0 0 20px rgba(0,0,0,.6);
    }
    `;
    document.head.appendChild(style);

    const menu = document.createElement("div");
    menu.id = "mt5Menu";
    menu.innerHTML = `
        <div id="mt5Header">MT5 CLIENT</div>

        <div class="section">
            <h3>ESP</h3>
            <div class="toggle"><span>Player ESP</span><input type="checkbox"></div>
            <div class="toggle"><span>Ore ESP</span><input type="checkbox"></div>
            <div class="toggle"><span>Chest ESP</span><input type="checkbox"></div>
        </div>

        <div class="section">
            <h3>Attack</h3>
            <div class="toggle"><span>Killaura</span><input type="checkbox"></div>
            <div class="toggle"><span>Multiaura</span><input type="checkbox"></div>
            <div class="toggle"><span>Aimbot</span><input type="checkbox"></div>
            <div class="toggle"><span>Death Coordinates</span><input type="checkbox"></div>
        </div>

        <div class="section">
            <h3>Blocks</h3>
            <div class="toggle"><span>Scaffolding</span><input type="checkbox"></div>
            <div class="toggle"><span>Capture Player</span><input type="checkbox"></div>
            <div class="toggle"><span>Fixed Height</span><input type="checkbox"></div>
            <div class="toggle"><span>Sphere</span><input type="checkbox"></div>
            <div class="toggle"><span>SW Mode</span><input type="checkbox"></div>
        </div>

        <div class="section">
            <h3>Automation</h3>
            <div class="toggle"><span>Auto Chest</span><input type="checkbox" disabled></div>
            <div class="toggle"><span>Auto Bow</span><input type="checkbox" disabled></div>
            <div class="toggle"><span>Auto Equip</span><input type="checkbox"></div>
            <div class="toggle"><span>Steal Protected Chests</span><input type="checkbox"></div>
        </div>

        <div class="section">
            <h3>Anomalies</h3>
            <div class="toggle"><span>Infinite Jump</span><input type="checkbox"></div>
            <div class="toggle"><span>Block Destroyer</span><input type="checkbox"></div>
        </div>
    `;
    document.body.appendChild(menu);

    const btn = document.createElement("div");
    btn.id = "mt5Btn";
    btn.textContent = "MT5";
    btn.onclick = () => {
        menu.style.display = menu.style.display === "none" ? "block" : "none";
    };
    document.body.appendChild(btn);
})();