MT5 Client

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

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 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);
})();