MT5 Client

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==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);
})();