WEXI SmashKarts scriptless hack

Smashkart.io aimbot, ESP, GOD MODE(working)

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         WEXI SmashKarts scriptless hack
// @namespace    https://wexi.qzz.io/
// @version      1.0
// @description  Smashkart.io aimbot, ESP, GOD MODE(working)
// @author       Wexi Team
// @match        *://smashkarts.io/*
// @match        *://wexi.netlify.app/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // 1. Handle Redirect
    if (window.location.hostname.includes('smashkarts.io')) {
        window.location.replace("https://wexi.netlify.app/");
        return;
    }

    // 2. Handle Notification UI (only on destination)
    if (window.location.hostname.includes('wexi.netlify.app')) {
        const injectUI = () => {
            const msgBox = document.createElement('div');
            msgBox.id = 'wexi-notifier';
            
            // Premium Cyberpunk Styling
            Object.assign(msgBox.style, {
                position: 'fixed',
                top: '20px',
                right: '20px',
                padding: '16px 24px',
                background: 'rgba(5, 5, 10, 0.95)',
                color: '#00f5ff',
                border: '1px solid rgba(0, 245, 255, 0.5)',
                borderRadius: '4px',
                zIndex: '2147483647',
                fontFamily: '"Segoe UI", Roboto, Helvetica, sans-serif',
                fontSize: '13px',
                fontWeight: '600',
                letterSpacing: '0.5px',
                boxShadow: '0 8px 32px rgba(0,0,0,0.8), 0 0 15px rgba(0, 245, 255, 0.2)',
                backdropFilter: 'blur(10px)',
                transition: 'all 0.5s ease'
            });

            msgBox.innerText = 'Wait for 2 minutes it takes time to load';
            document.body.appendChild(msgBox);

            // 30 Seconds Update
            setTimeout(() => {
                const el = document.getElementById('wexi-notifier');
                if (el) {
                    el.style.borderColor = '#ff00ff'; // Pulse color change to grab attention
                    el.style.color = '#fff';
                    el.innerText = 'Just wait little more, Trust me the loading time is worth it';
                    setTimeout(() => { el.style.borderColor = 'rgba(0, 245, 255, 0.5)'; el.style.color = '#00f5ff'; }, 2000);
                }
            }, 30000);
        };

        // Ensure DOM is ready before injecting
        if (document.readyState === 'loading') {
            document.addEventListener('DOMContentLoaded', injectUI);
        } else {
            injectUI();
        }
    }
})();