Greasy Fork is available in English.

WEXI SmashKarts scriptless hack

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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