WEXI SmashKarts scriptless hack

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

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

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.

You will need to install a user script manager extension to install this script.

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

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