Fake Roblox Admin Panel Prank

Prank fake Roblox admin panel with fake features

// ==UserScript==
// @name         Fake Roblox Admin Panel Prank
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Prank fake Roblox admin panel with fake features
// @author       You
// @match        *://*.roblox.com/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    // Only show on homepage for demo
    if (!window.location.href.includes("roblox.com/home")) return;

    // Fake login popup
    const loginBox = document.createElement('div');
    loginBox.innerHTML = `
        <div id="fakeLogin" style="
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            z-index: 9999;
            border-radius: 10px;
            font-family: 'Arial';
            width: 300px;
            text-align: center;
        ">
            <h2>Roblox Login</h2>
            <input id="fakeUser" placeholder="Username" style="width: 90%; padding: 10px; margin: 10px 0;"><br>
            <input id="fakePass" placeholder="Password" type="password" style="width: 90%; padding: 10px;"><br>
            <button id="loginBtn" style="margin-top: 15px; padding: 10px 20px;">Log In</button>
            <p id="loginStatus" style="margin-top: 10px; color: green;"></p>
        </div>
    `;
    document.body.appendChild(loginBox);

    document.getElementById("loginBtn").onclick = function () {
        const user = document.getElementById("fakeUser").value;
        const pass = document.getElementById("fakePass").value;

        if (!user || !pass) {
            document.getElementById("loginStatus").innerText = "Please enter a username and password.";
            return;
        }

        document.getElementById("loginStatus").innerText = "Logging in...";
        setTimeout(() => {
            document.getElementById("fakeLogin").remove();
            showFakeAdminPanel(user);
        }, 1500);
    };

    function showFakeAdminPanel(username) {
        const panel = document.createElement('div');
        panel.innerHTML = `
            <div style="
                position: fixed;
                top: 20px; left: 20px;
                background: #f4f4f4;
                padding: 20px;
                border: 1px solid #ccc;
                z-index: 9999;
                font-family: Arial;
                border-radius: 8px;
                width: 400px;
            ">
                <h3>Welcome, ${username}</h3>
                <p>You are now logged in as <strong>${username}</strong>.</p>
                <p>Robux: <span id="robuxCount">1,000,000</span></p>
                <p>Limiteds: <span id="limitedsList">Dominus Empyreus, Valk, Classic Fedora</span></p>
                <p>Status: <span style="color: green;">Admin Panel Active</span></p>
                <button id="sendRobux" style="margin-top: 10px; padding: 8px 16px;">Send Robux</button>
                <button id="viewInventory" style="margin-top: 10px; padding: 8px 16px;">View Inventory</button>
                <button id="banUser" style="margin-top: 10px; padding: 8px 16px;">Ban User</button>
                <p id="actionStatus" style="margin-top: 10px; color: blue;"></p>
            </div>
        `;
        document.body.appendChild(panel);

        document.getElementById("sendRobux").onclick = function () {
            document.getElementById("actionStatus").innerText = "Sending 10,000 Robux...";
            setTimeout(() => {
                document.getElementById("actionStatus").innerText = "Successfully sent 10,000 Robux!";
            }, 2000);
        };

        document.getElementById("viewInventory").onclick = function () {
            document.getElementById("actionStatus").innerText = "Loading Inventory...";
            setTimeout(() => {
                document.getElementById("actionStatus").innerText = "Inventory Loaded: Dominus, Valkyrie Helm, 8-bit Super Cap.";
            }, 2000);
        };

        document.getElementById("banUser").onclick = function () {
            document.getElementById("actionStatus").innerText = "Banning User...";
            setTimeout(() => {
                document.getElementById("actionStatus").innerText = "User Banned Successfully!";
            }, 2000);
        };
    }
})();