Spaces:
Running
Running
File size: 9,877 Bytes
1663d6a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinite Yield | Roblox Script Haven</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8 max-w-4xl">
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-2/3">
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 mb-6">
<div class="flex justify-between items-start mb-4">
<div>
<h1 class="text-2xl font-bold mb-1">Infinite Yield</h1>
<div class="flex items-center gap-2 text-sm text-gray-400 mb-4">
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded">Verified</span>
<span>By ScriptMaster</span>
</div>
</div>
<div class="flex items-center gap-2">
<button class="bg-gray-700 hover:bg-gray-600 p-2 rounded-lg">
<i data-feather="bookmark" class="w-5 h-5"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 p-2 rounded-lg">
<i data-feather="share-2" class="w-5 h-5"></i>
</button>
</div>
</div>
<div class="mb-6">
<p class="text-gray-300 mb-4">The most comprehensive admin script for Roblox with over 100 commands for complete game control. Features include player management, server tools, fun commands, and more.</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Admin</span>
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Commands</span>
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Utility</span>
</div>
<div class="grid grid-cols-2 gap-4 mb-6">
<div class="bg-gray-700/50 p-3 rounded-lg">
<div class="text-sm text-gray-400 mb-1">Downloads</div>
<div class="text-xl font-semibold">12,487</div>
</div>
<div class="bg-gray-700/50 p-3 rounded-lg">
<div class="text-sm text-gray-400 mb-1">Last Updated</div>
<div class="text-xl font-semibold">2 days ago</div>
</div>
</div>
</div>
<div class="mb-6">
<h3 class="text-lg font-semibold mb-3">Requirements</h3>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center gap-2">
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
<span>Roblox Executor (Synapse X recommended)</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
<span>Basic knowledge of Lua scripting</span>
</li>
</ul>
</div>
<div class="mb-6">
<h3 class="text-lg font-semibold mb-3">Features</h3>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
<span>100+ admin commands</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
<span>Player management tools</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
<span>Server utilities</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
<span>Fun commands and effects</span>
</li>
</ul>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
<h2 class="text-xl font-bold mb-4">Script Code</h2>
<div class="bg-gray-900 rounded-lg p-4 overflow-x-auto">
<pre class="text-gray-300 font-mono text-sm"><code>-- Infinite Yield Admin Script
-- Loadstring for easy execution
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
-- Main command list
local cmds = {
":fly - Enables flight mode",
":noclip - Toggles noclip",
":bring [player] - Brings player to you",
":kill [player] - Kills the specified player",
":tools - Gives you all tools",
":esp - Shows player ESP",
":unesp - Removes player ESP",
":cmds - Shows all commands"
}
-- More commands available in the full script</code></pre>
</div>
<button class="mt-4 bg-primary-500 hover:bg-primary-600 text-white px-6 py-2 rounded-lg font-medium transition-colors flex items-center gap-2">
<i data-feather="copy"></i> Copy Script
</button>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 sticky top-4">
<h3 class="text-lg font-semibold mb-4">About Author</h3>
<div class="flex items-center gap-3 mb-4">
<div class="w-12 h-12 bg-primary-500/20 rounded-full flex items-center justify-center">
<i data-feather="user" class="text-primary-500"></i>
</div>
<div>
<div class="font-medium">ScriptMaster</div>
<div class="text-sm text-gray-400">Verified Creator</div>
</div>
</div>
<div class="mb-6">
<div class="text-sm text-gray-400 mb-2">Other Scripts</div>
<ul class="space-y-2">
<li>
<a href="#" class="text-gray-300 hover:text-primary-500 text-sm flex items-center gap-2">
<i data-feather="file-text" class="w-4 h-4"></i>
<span>Dark Dex Explorer</span>
</a>
</li>
<li>
<a href="#" class="text-gray-300 hover:text-primary-500 text-sm flex items-center gap-2">
<i data-feather="file-text" class="w-4 h-4"></i>
<span>Simple Spy</span>
</a>
</li>
</ul>
</div>
<div class="mb-6">
<div class="text-sm text-gray-400 mb-2">Executor Compatibility</div>
<ul class="space-y-2">
<li class="flex items-center gap-2 text-gray-300">
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
<span>Synapse X</span>
</li>
<li class="flex items-center gap-2 text-gray-300">
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
<span>Script-Ware</span>
</li>
<li class="flex items-center gap-2 text-gray-300">
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
<span>KRNL</span>
</li>
</ul>
</div>
<button class="w-full bg-secondary-500 hover:bg-secondary-600 text-white px-6 py-2 rounded-lg font-medium transition-colors flex items-center justify-center gap-2">
<i data-feather="download"></i> Download Script
</button>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html> |