WEXI SmashKarts scriptless hack

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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