CoolFace
Apppublic

NiceGuyByMe4212/make-a-python-script-that-hooks-on-to-ro-1s2xnd7zi3k

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
index.html53 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en" class="dark">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Roblox Executor Supreme ๐Ÿš€</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10    <script src="https://unpkg.com/feather-icons"></script>11    <script src="components/navbar.js"></script>12    <script src="components/executor.js"></script>13</head>14<body class="bg-gray-900 text-gray-100 min-h-screen">15    <custom-navbar></custom-navbar>16    17    <main class="container mx-auto px-4 py-8">18        <div class="max-w-4xl mx-auto">19            <h1 class="text-4xl font-bold mb-6 text-purple-500">Roblox Executor Supreme</h1>20            21            <custom-executor></custom-executor>22            23            <div class="mt-12 bg-gray-800 rounded-lg p-6 shadow-lg">24                <h2 class="text-2xl font-semibold mb-4 text-purple-400">Script Hub</h2>25                <div class="grid grid-cols-1 md:grid-cols-2 gap-4">26                    <div class="bg-gray-700 p-4 rounded-lg hover:bg-gray-600 transition cursor-pointer">27                        <h3 class="text-lg font-medium">Infinite Yield</h3>28                        <p class="text-gray-400 mt-2">The most popular admin script for Roblox</p>29                    </div>30                    <div class="bg-gray-700 p-4 rounded-lg hover:bg-gray-600 transition cursor-pointer">31                        <h3 class="text-lg font-medium">Dark Dex</h3>32                        <p class="text-gray-400 mt-2">Advanced explorer for Roblox games</p>33                    </div>34                    <div class="bg-gray-700 p-4 rounded-lg hover:bg-gray-600 transition cursor-pointer">35                        <h3 class="text-lg font-medium">Owl Hub</h3>36                        <p class="text-gray-400 mt-2">Game-specific scripts collection</p>37                    </div>38                    <div class="bg-gray-700 p-4 rounded-lg hover:bg-gray-600 transition cursor-pointer">39                        <h3 class="text-lg font-medium">CMD-X</h3>40                        <p class="text-gray-400 mt-2">Powerful command executor</p>41                    </div>42                </div>43            </div>44        </div>45    </main>46 47    <script>48        feather.replace();49    </script>50    <script src="script.js"></script>51<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>52</body>53</html>