Spaces:
Running
Running
its good but make the top bar better its looking like shit
Browse files- README.md +8 -5
- components/footer.js +68 -0
- components/navbar.js +126 -0
- index.html +173 -19
- script.html +186 -0
- script.js +55 -0
- style.css +52 -18
- submit.html +84 -0
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Roblox Code Wizardry
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Roblox Code Wizardry 🧙♂️
|
| 3 |
+
colorFrom: blue
|
| 4 |
+
colorTo: pink
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.footer-link:hover {
|
| 7 |
+
color: #5865F2;
|
| 8 |
+
}
|
| 9 |
+
</style>
|
| 10 |
+
<footer class="bg-gray-800 border-t border-gray-700 mt-12">
|
| 11 |
+
<div class="container mx-auto px-4 py-8">
|
| 12 |
+
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 13 |
+
<div>
|
| 14 |
+
<div class="flex items-center gap-2 mb-4">
|
| 15 |
+
<div class="w-8 h-8 bg-primary-500 rounded-lg flex items-center justify-center">
|
| 16 |
+
<i data-feather="code" class="text-white"></i>
|
| 17 |
+
</div>
|
| 18 |
+
<span class="text-xl font-bold">Script Haven</span>
|
| 19 |
+
</div>
|
| 20 |
+
<p class="text-gray-400 text-sm">The best place to share and discover Roblox scripts with the community.</p>
|
| 21 |
+
</div>
|
| 22 |
+
|
| 23 |
+
<div>
|
| 24 |
+
<h3 class="text-lg font-semibold mb-4">Navigation</h3>
|
| 25 |
+
<ul class="space-y-2">
|
| 26 |
+
<li><a href="index.html" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Home</a></li>
|
| 27 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Categories</a></li>
|
| 28 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Top Scripts</a></li>
|
| 29 |
+
<li><a href="submit.html" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Submit Script</a></li>
|
| 30 |
+
</ul>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
<div>
|
| 34 |
+
<h3 class="text-lg font-semibold mb-4">Legal</h3>
|
| 35 |
+
<ul class="space-y-2">
|
| 36 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Terms of Service</a></li>
|
| 37 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Privacy Policy</a></li>
|
| 38 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">DMCA</a></li>
|
| 39 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-primary-500 transition-colors">Contact</a></li>
|
| 40 |
+
</ul>
|
| 41 |
+
</div>
|
| 42 |
+
|
| 43 |
+
<div>
|
| 44 |
+
<h3 class="text-lg font-semibold mb-4">Connect</h3>
|
| 45 |
+
<div class="flex gap-4 mb-4">
|
| 46 |
+
<a href="#" class="text-gray-400 hover:text-primary-500 transition-colors">
|
| 47 |
+
<i data-feather="discord" class="w-5 h-5"></i>
|
| 48 |
+
</a>
|
| 49 |
+
<a href="#" class="text-gray-400 hover:text-primary-500 transition-colors">
|
| 50 |
+
<i data-feather="twitter" class="w-5 h-5"></i>
|
| 51 |
+
</a>
|
| 52 |
+
<a href="#" class="text-gray-400 hover:text-primary-500 transition-colors">
|
| 53 |
+
<i data-feather="github" class="w-5 h-5"></i>
|
| 54 |
+
</a>
|
| 55 |
+
<a href="#" class="text-gray-400 hover:text-primary-500 transition-colors">
|
| 56 |
+
<i data-feather="youtube" class="w-5 h-5"></i>
|
| 57 |
+
</a>
|
| 58 |
+
</div>
|
| 59 |
+
<p class="text-gray-500 text-sm">© 2023 Script Haven. All rights reserved.</p>
|
| 60 |
+
</div>
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
</footer>
|
| 64 |
+
`;
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.navbar {
|
| 7 |
+
background: linear-gradient(90deg, rgba(17,24,39,0.95) 0%, rgba(37,99,235,0.15) 100%);
|
| 8 |
+
backdrop-filter: blur(12px);
|
| 9 |
+
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
| 10 |
+
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
| 11 |
+
}
|
| 12 |
+
.nav-link {
|
| 13 |
+
position: relative;
|
| 14 |
+
transition: all 0.3s ease;
|
| 15 |
+
}
|
| 16 |
+
.nav-link:hover {
|
| 17 |
+
color: #5865F2;
|
| 18 |
+
}
|
| 19 |
+
.nav-link::after {
|
| 20 |
+
content: '';
|
| 21 |
+
position: absolute;
|
| 22 |
+
bottom: -8px;
|
| 23 |
+
left: 0;
|
| 24 |
+
width: 0;
|
| 25 |
+
height: 2px;
|
| 26 |
+
background: #5865F2;
|
| 27 |
+
transition: width 0.3s ease;
|
| 28 |
+
}
|
| 29 |
+
.nav-link:hover::after {
|
| 30 |
+
width: 100%;
|
| 31 |
+
}
|
| 32 |
+
.mobile-menu {
|
| 33 |
+
transition: all 0.3s ease;
|
| 34 |
+
background: rgba(17, 24, 39, 0.98);
|
| 35 |
+
backdrop-filter: blur(12px);
|
| 36 |
+
}
|
| 37 |
+
.logo-text {
|
| 38 |
+
background: linear-gradient(90deg, #5865F2 0%, #8A2BE2 100%);
|
| 39 |
+
-webkit-background-clip: text;
|
| 40 |
+
background-clip: text;
|
| 41 |
+
color: transparent;
|
| 42 |
+
font-weight: 700;
|
| 43 |
+
}
|
| 44 |
+
.theme-toggle {
|
| 45 |
+
transition: transform 0.3s ease;
|
| 46 |
+
}
|
| 47 |
+
.theme-toggle:hover {
|
| 48 |
+
transform: rotate(30deg);
|
| 49 |
+
}
|
| 50 |
+
.sign-in-btn {
|
| 51 |
+
background: linear-gradient(90deg, #5865F2 0%, #8A2BE2 100%);
|
| 52 |
+
transition: all 0.3s ease;
|
| 53 |
+
}
|
| 54 |
+
.sign-in-btn:hover {
|
| 55 |
+
transform: translateY(-2px);
|
| 56 |
+
box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
|
| 57 |
+
}
|
| 58 |
+
</style>
|
| 59 |
+
<nav class="navbar border-b border-gray-800 fixed w-full z-10">
|
| 60 |
+
<div class="container mx-auto px-4">
|
| 61 |
+
<div class="flex justify-between items-center py-4">
|
| 62 |
+
<a href="index.html" class="flex items-center gap-2">
|
| 63 |
+
<div class="w-10 h-10 bg-gradient-to-br from-primary-500 to-indigo-600 rounded-lg flex items-center justify-center shadow-lg">
|
| 64 |
+
<i data-feather="code" class="text-white w-5 h-5"></i>
|
| 65 |
+
</div>
|
| 66 |
+
<span class="text-xl font-bold logo-text">Code Wizardry</span>
|
| 67 |
+
</a>
|
| 68 |
+
|
| 69 |
+
<div class="hidden md:flex items-center gap-8">
|
| 70 |
+
<a href="index.html" class="nav-link text-gray-300">Home</a>
|
| 71 |
+
<a href="#" class="nav-link text-gray-300">Categories</a>
|
| 72 |
+
<a href="#" class="nav-link text-gray-300">Top Scripts</a>
|
| 73 |
+
<a href="submit.html" class="nav-link text-gray-300">Submit</a>
|
| 74 |
+
|
| 75 |
+
<div class="flex items-center gap-4 ml-4">
|
| 76 |
+
<button id="theme-toggle" class="text-gray-400 hover:text-primary-500 p-2 rounded-full theme-toggle">
|
| 77 |
+
<i data-feather="moon" class="w-5 h-5"></i>
|
| 78 |
+
</button>
|
| 79 |
+
<a href="#" class="sign-in-btn text-white px-5 py-2.5 rounded-lg text-sm font-medium">
|
| 80 |
+
Sign In
|
| 81 |
+
</a>
|
| 82 |
+
</div>
|
| 83 |
+
</div>
|
| 84 |
+
<button id="mobile-menu-button" class="md:hidden text-gray-400 hover:text-primary-500 focus:outline-none transition-colors">
|
| 85 |
+
<i data-feather="menu" class="w-6 h-6"></i>
|
| 86 |
+
</button>
|
| 87 |
+
</div>
|
| 88 |
+
</div>
|
| 89 |
+
<!-- Mobile menu -->
|
| 90 |
+
<div id="mobile-menu" class="mobile-menu hidden md:hidden border-t border-gray-700">
|
| 91 |
+
<div class="container mx-auto px-4 py-3">
|
| 92 |
+
<div class="flex flex-col space-y-3">
|
| 93 |
+
<a href="index.html" class="nav-link text-gray-300 py-3 px-4">Home</a>
|
| 94 |
+
<a href="#" class="nav-link text-gray-300 py-3 px-4">Categories</a>
|
| 95 |
+
<a href="#" class="nav-link text-gray-300 py-3 px-4">Top Scripts</a>
|
| 96 |
+
<a href="submit.html" class="nav-link text-gray-300 py-3 px-4">Submit</a>
|
| 97 |
+
<div class="pt-2 border-t border-gray-700 px-4 pb-4">
|
| 98 |
+
<a href="#" class="block text-center sign-in-btn text-white px-4 py-3 rounded-lg font-medium">
|
| 99 |
+
Sign In
|
| 100 |
+
</a>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
</div>
|
| 104 |
+
</div>
|
| 105 |
+
</nav>
|
| 106 |
+
`;
|
| 107 |
+
|
| 108 |
+
// Mobile menu toggle
|
| 109 |
+
const mobileMenuButton = this.shadowRoot.getElementById('mobile-menu-button');
|
| 110 |
+
const mobileMenu = this.shadowRoot.getElementById('mobile-menu');
|
| 111 |
+
|
| 112 |
+
mobileMenuButton.addEventListener('click', () => {
|
| 113 |
+
mobileMenu.classList.toggle('hidden');
|
| 114 |
+
feather.replace();
|
| 115 |
+
});
|
| 116 |
+
|
| 117 |
+
// Close mobile menu when clicking outside
|
| 118 |
+
document.addEventListener('click', (event) => {
|
| 119 |
+
if (!this.shadowRoot.contains(event.target) && !mobileMenu.classList.contains('hidden')) {
|
| 120 |
+
mobileMenu.classList.add('hidden');
|
| 121 |
+
}
|
| 122 |
+
});
|
| 123 |
+
}
|
| 124 |
+
}
|
| 125 |
+
|
| 126 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,173 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 Script Haven | Share & Discover Game Scripts</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>
|
| 12 |
+
tailwind.config = {
|
| 13 |
+
darkMode: 'class',
|
| 14 |
+
theme: {
|
| 15 |
+
extend: {
|
| 16 |
+
colors: {
|
| 17 |
+
primary: {
|
| 18 |
+
500: '#5865F2',
|
| 19 |
+
600: '#4752C4'
|
| 20 |
+
},
|
| 21 |
+
secondary: {
|
| 22 |
+
500: '#ED4245',
|
| 23 |
+
600: '#D13538'
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
}
|
| 29 |
+
</script>
|
| 30 |
+
</head>
|
| 31 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 32 |
+
<custom-navbar></custom-navbar>
|
| 33 |
+
|
| 34 |
+
<main class="container mx-auto px-4 py-8">
|
| 35 |
+
<section class="mb-12">
|
| 36 |
+
<div class="flex flex-col md:flex-row justify-between items-start md:items-end gap-4 mb-6">
|
| 37 |
+
<div>
|
| 38 |
+
<h1 class="text-4xl font-bold mb-2">Roblox Script Haven</h1>
|
| 39 |
+
<p class="text-gray-400">Share and discover the best game scripts with the community</p>
|
| 40 |
+
</div>
|
| 41 |
+
<a href="submit.html" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition-colors flex items-center gap-2">
|
| 42 |
+
<i data-feather="plus"></i> Submit Script
|
| 43 |
+
</a>
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 47 |
+
<!-- Script Card 1 -->
|
| 48 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden border border-gray-700 hover:border-primary-500 transition-colors">
|
| 49 |
+
<div class="p-5">
|
| 50 |
+
<div class="flex justify-between items-start mb-3">
|
| 51 |
+
<h3 class="text-xl font-semibold">Infinite Yield</h3>
|
| 52 |
+
<span class="bg-green-500/20 text-green-400 text-xs px-2 py-1 rounded">Verified</span>
|
| 53 |
+
</div>
|
| 54 |
+
<p class="text-gray-400 mb-4">The most popular admin script with over 100 commands for game control.</p>
|
| 55 |
+
<div class="flex items-center justify-between">
|
| 56 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 57 |
+
<i data-feather="user" class="w-4 h-4"></i>
|
| 58 |
+
<span>ScriptMaster</span>
|
| 59 |
+
</div>
|
| 60 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 61 |
+
<i data-feather="download" class="w-4 h-4"></i>
|
| 62 |
+
<span>12.4k</span>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
</div>
|
| 66 |
+
<div class="bg-gray-700 px-5 py-3 flex justify-between items-center">
|
| 67 |
+
<span class="text-sm text-gray-300">Roblox Executor Required</span>
|
| 68 |
+
<a href="script.html" class="text-primary-500 hover:text-primary-400 text-sm font-medium flex items-center gap-1">
|
| 69 |
+
View <i data-feather="chevron-right" class="w-4 h-4"></i>
|
| 70 |
+
</a>
|
| 71 |
+
</div>
|
| 72 |
+
</div>
|
| 73 |
+
|
| 74 |
+
<!-- Script Card 2 -->
|
| 75 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden border border-gray-700 hover:border-primary-500 transition-colors">
|
| 76 |
+
<div class="p-5">
|
| 77 |
+
<div class="flex justify-between items-start mb-3">
|
| 78 |
+
<h3 class="text-xl font-semibold">Dark Dex</h3>
|
| 79 |
+
<span class="bg-yellow-500/20 text-yellow-400 text-xs px-2 py-1 rounded">Popular</span>
|
| 80 |
+
</div>
|
| 81 |
+
<p class="text-gray-400 mb-4">Advanced explorer for Roblox games with powerful inspection tools.</p>
|
| 82 |
+
<div class="flex items-center justify-between">
|
| 83 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 84 |
+
<i data-feather="user" class="w-4 h-4"></i>
|
| 85 |
+
<span>ExplorerPro</span>
|
| 86 |
+
</div>
|
| 87 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 88 |
+
<i data-feather="download" class="w-4 h-4"></i>
|
| 89 |
+
<span>8.7k</span>
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
</div>
|
| 93 |
+
<div class="bg-gray-700 px-5 py-3 flex justify-between items-center">
|
| 94 |
+
<span class="text-sm text-gray-300">Synapse X Recommended</span>
|
| 95 |
+
<a href="script.html" class="text-primary-500 hover:text-primary-400 text-sm font-medium flex items-center gap-1">
|
| 96 |
+
View <i data-feather="chevron-right" class="w-4 h-4"></i>
|
| 97 |
+
</a>
|
| 98 |
+
</div>
|
| 99 |
+
</div>
|
| 100 |
+
|
| 101 |
+
<!-- Script Card 3 -->
|
| 102 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden border border-gray-700 hover:border-primary-500 transition-colors">
|
| 103 |
+
<div class="p-5">
|
| 104 |
+
<div class="flex justify-between items-start mb-3">
|
| 105 |
+
<h3 class="text-xl font-semibold">Owl Hub</h3>
|
| 106 |
+
<span class="bg-blue-500/20 text-blue-400 text-xs px-2 py-1 rounded">New</span>
|
| 107 |
+
</div>
|
| 108 |
+
<p class="text-gray-400 mb-4">Universal script hub with support for multiple popular games.</p>
|
| 109 |
+
<div class="flex items-center justify-between">
|
| 110 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 111 |
+
<i data-feather="user" class="w-4 h-4"></i>
|
| 112 |
+
<span>OwlScripts</span>
|
| 113 |
+
</div>
|
| 114 |
+
<div class="flex items-center gap-2 text-sm text-gray-400">
|
| 115 |
+
<i data-feather="download" class="w-4 h-4"></i>
|
| 116 |
+
<span>5.2k</span>
|
| 117 |
+
</div>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
<div class="bg-gray-700 px-5 py-3 flex justify-between items-center">
|
| 121 |
+
<span class="text-sm text-gray-300">KRNL Supported</span>
|
| 122 |
+
<a href="script.html" class="text-primary-500 hover:text-primary-400 text-sm font-medium flex items-center gap-1">
|
| 123 |
+
View <i data-feather="chevron-right" class="w-4 h-4"></i>
|
| 124 |
+
</a>
|
| 125 |
+
</div>
|
| 126 |
+
</div>
|
| 127 |
+
</div>
|
| 128 |
+
</section>
|
| 129 |
+
|
| 130 |
+
<section class="mb-12">
|
| 131 |
+
<h2 class="text-2xl font-bold mb-6">Top Categories</h2>
|
| 132 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
|
| 133 |
+
<a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-lg p-4 transition-colors flex flex-col items-center">
|
| 134 |
+
<div class="w-12 h-12 bg-primary-500/20 rounded-full flex items-center justify-center mb-2">
|
| 135 |
+
<i data-feather="shield" class="text-primary-500"></i>
|
| 136 |
+
</div>
|
| 137 |
+
<span class="font-medium">Admin</span>
|
| 138 |
+
<span class="text-xs text-gray-400">124 scripts</span>
|
| 139 |
+
</a>
|
| 140 |
+
<a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-lg p-4 transition-colors flex flex-col items-center">
|
| 141 |
+
<div class="w-12 h-12 bg-green-500/20 rounded-full flex items-center justify-center mb-2">
|
| 142 |
+
<i data-feather="zap" class="text-green-500"></i>
|
| 143 |
+
</div>
|
| 144 |
+
<span class="font-medium">Exploits</span>
|
| 145 |
+
<span class="text-xs text-gray-400">87 scripts</span>
|
| 146 |
+
</a>
|
| 147 |
+
<a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-lg p-4 transition-colors flex flex-col items-center">
|
| 148 |
+
<div class="w-12 h-12 bg-purple-500/20 rounded-full flex items-center justify-center mb-2">
|
| 149 |
+
<i data-feather="eye" class="text-purple-500"></i>
|
| 150 |
+
</div>
|
| 151 |
+
<span class="font-medium">ESP</span>
|
| 152 |
+
<span class="text-xs text-gray-400">56 scripts</span>
|
| 153 |
+
</a>
|
| 154 |
+
<a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-lg p-4 transition-colors flex flex-col items-center">
|
| 155 |
+
<div class="w-12 h-12 bg-yellow-500/20 rounded-full flex items-center justify-center mb-2">
|
| 156 |
+
<i data-feather="box" class="text-yellow-500"></i>
|
| 157 |
+
</div>
|
| 158 |
+
<span class="font-medium">Game Hubs</span>
|
| 159 |
+
<span class="text-xs text-gray-400">42 scripts</span>
|
| 160 |
+
</a>
|
| 161 |
+
</div>
|
| 162 |
+
</section>
|
| 163 |
+
</main>
|
| 164 |
+
|
| 165 |
+
<custom-footer></custom-footer>
|
| 166 |
+
|
| 167 |
+
<script src="components/navbar.js"></script>
|
| 168 |
+
<script src="components/footer.js"></script>
|
| 169 |
+
<script src="script.js"></script>
|
| 170 |
+
<script>feather.replace();</script>
|
| 171 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 172 |
+
</body>
|
| 173 |
+
</html>
|
script.html
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Infinite Yield | Roblox Script Haven</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 |
+
</head>
|
| 12 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 13 |
+
<custom-navbar></custom-navbar>
|
| 14 |
+
|
| 15 |
+
<main class="container mx-auto px-4 py-8 max-w-4xl">
|
| 16 |
+
<div class="flex flex-col md:flex-row gap-8">
|
| 17 |
+
<div class="md:w-2/3">
|
| 18 |
+
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 mb-6">
|
| 19 |
+
<div class="flex justify-between items-start mb-4">
|
| 20 |
+
<div>
|
| 21 |
+
<h1 class="text-2xl font-bold mb-1">Infinite Yield</h1>
|
| 22 |
+
<div class="flex items-center gap-2 text-sm text-gray-400 mb-4">
|
| 23 |
+
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded">Verified</span>
|
| 24 |
+
<span>By ScriptMaster</span>
|
| 25 |
+
</div>
|
| 26 |
+
</div>
|
| 27 |
+
<div class="flex items-center gap-2">
|
| 28 |
+
<button class="bg-gray-700 hover:bg-gray-600 p-2 rounded-lg">
|
| 29 |
+
<i data-feather="bookmark" class="w-5 h-5"></i>
|
| 30 |
+
</button>
|
| 31 |
+
<button class="bg-gray-700 hover:bg-gray-600 p-2 rounded-lg">
|
| 32 |
+
<i data-feather="share-2" class="w-5 h-5"></i>
|
| 33 |
+
</button>
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
|
| 37 |
+
<div class="mb-6">
|
| 38 |
+
<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>
|
| 39 |
+
|
| 40 |
+
<div class="flex flex-wrap gap-2 mb-6">
|
| 41 |
+
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Admin</span>
|
| 42 |
+
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Commands</span>
|
| 43 |
+
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Utility</span>
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
<div class="grid grid-cols-2 gap-4 mb-6">
|
| 47 |
+
<div class="bg-gray-700/50 p-3 rounded-lg">
|
| 48 |
+
<div class="text-sm text-gray-400 mb-1">Downloads</div>
|
| 49 |
+
<div class="text-xl font-semibold">12,487</div>
|
| 50 |
+
</div>
|
| 51 |
+
<div class="bg-gray-700/50 p-3 rounded-lg">
|
| 52 |
+
<div class="text-sm text-gray-400 mb-1">Last Updated</div>
|
| 53 |
+
<div class="text-xl font-semibold">2 days ago</div>
|
| 54 |
+
</div>
|
| 55 |
+
</div>
|
| 56 |
+
</div>
|
| 57 |
+
|
| 58 |
+
<div class="mb-6">
|
| 59 |
+
<h3 class="text-lg font-semibold mb-3">Requirements</h3>
|
| 60 |
+
<ul class="space-y-2 text-gray-300">
|
| 61 |
+
<li class="flex items-center gap-2">
|
| 62 |
+
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
|
| 63 |
+
<span>Roblox Executor (Synapse X recommended)</span>
|
| 64 |
+
</li>
|
| 65 |
+
<li class="flex items-center gap-2">
|
| 66 |
+
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
|
| 67 |
+
<span>Basic knowledge of Lua scripting</span>
|
| 68 |
+
</li>
|
| 69 |
+
</ul>
|
| 70 |
+
</div>
|
| 71 |
+
|
| 72 |
+
<div class="mb-6">
|
| 73 |
+
<h3 class="text-lg font-semibold mb-3">Features</h3>
|
| 74 |
+
<ul class="space-y-2 text-gray-300">
|
| 75 |
+
<li class="flex items-center gap-2">
|
| 76 |
+
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
|
| 77 |
+
<span>100+ admin commands</span>
|
| 78 |
+
</li>
|
| 79 |
+
<li class="flex items-center gap-2">
|
| 80 |
+
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
|
| 81 |
+
<span>Player management tools</span>
|
| 82 |
+
</li>
|
| 83 |
+
<li class="flex items-center gap-2">
|
| 84 |
+
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
|
| 85 |
+
<span>Server utilities</span>
|
| 86 |
+
</li>
|
| 87 |
+
<li class="flex items-center gap-2">
|
| 88 |
+
<i data-feather="check-circle" class="w-4 h-4 text-primary-500"></i>
|
| 89 |
+
<span>Fun commands and effects</span>
|
| 90 |
+
</li>
|
| 91 |
+
</ul>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
|
| 96 |
+
<h2 class="text-xl font-bold mb-4">Script Code</h2>
|
| 97 |
+
<div class="bg-gray-900 rounded-lg p-4 overflow-x-auto">
|
| 98 |
+
<pre class="text-gray-300 font-mono text-sm"><code>-- Infinite Yield Admin Script
|
| 99 |
+
-- Loadstring for easy execution
|
| 100 |
+
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
|
| 101 |
+
|
| 102 |
+
-- Main command list
|
| 103 |
+
local cmds = {
|
| 104 |
+
":fly - Enables flight mode",
|
| 105 |
+
":noclip - Toggles noclip",
|
| 106 |
+
":bring [player] - Brings player to you",
|
| 107 |
+
":kill [player] - Kills the specified player",
|
| 108 |
+
":tools - Gives you all tools",
|
| 109 |
+
":esp - Shows player ESP",
|
| 110 |
+
":unesp - Removes player ESP",
|
| 111 |
+
":cmds - Shows all commands"
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
+
-- More commands available in the full script</code></pre>
|
| 115 |
+
</div>
|
| 116 |
+
<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">
|
| 117 |
+
<i data-feather="copy"></i> Copy Script
|
| 118 |
+
</button>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
|
| 122 |
+
<div class="md:w-1/3">
|
| 123 |
+
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 sticky top-4">
|
| 124 |
+
<h3 class="text-lg font-semibold mb-4">About Author</h3>
|
| 125 |
+
<div class="flex items-center gap-3 mb-4">
|
| 126 |
+
<div class="w-12 h-12 bg-primary-500/20 rounded-full flex items-center justify-center">
|
| 127 |
+
<i data-feather="user" class="text-primary-500"></i>
|
| 128 |
+
</div>
|
| 129 |
+
<div>
|
| 130 |
+
<div class="font-medium">ScriptMaster</div>
|
| 131 |
+
<div class="text-sm text-gray-400">Verified Creator</div>
|
| 132 |
+
</div>
|
| 133 |
+
</div>
|
| 134 |
+
|
| 135 |
+
<div class="mb-6">
|
| 136 |
+
<div class="text-sm text-gray-400 mb-2">Other Scripts</div>
|
| 137 |
+
<ul class="space-y-2">
|
| 138 |
+
<li>
|
| 139 |
+
<a href="#" class="text-gray-300 hover:text-primary-500 text-sm flex items-center gap-2">
|
| 140 |
+
<i data-feather="file-text" class="w-4 h-4"></i>
|
| 141 |
+
<span>Dark Dex Explorer</span>
|
| 142 |
+
</a>
|
| 143 |
+
</li>
|
| 144 |
+
<li>
|
| 145 |
+
<a href="#" class="text-gray-300 hover:text-primary-500 text-sm flex items-center gap-2">
|
| 146 |
+
<i data-feather="file-text" class="w-4 h-4"></i>
|
| 147 |
+
<span>Simple Spy</span>
|
| 148 |
+
</a>
|
| 149 |
+
</li>
|
| 150 |
+
</ul>
|
| 151 |
+
</div>
|
| 152 |
+
|
| 153 |
+
<div class="mb-6">
|
| 154 |
+
<div class="text-sm text-gray-400 mb-2">Executor Compatibility</div>
|
| 155 |
+
<ul class="space-y-2">
|
| 156 |
+
<li class="flex items-center gap-2 text-gray-300">
|
| 157 |
+
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
|
| 158 |
+
<span>Synapse X</span>
|
| 159 |
+
</li>
|
| 160 |
+
<li class="flex items-center gap-2 text-gray-300">
|
| 161 |
+
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
|
| 162 |
+
<span>Script-Ware</span>
|
| 163 |
+
</li>
|
| 164 |
+
<li class="flex items-center gap-2 text-gray-300">
|
| 165 |
+
<i data-feather="check" class="w-4 h-4 text-green-500"></i>
|
| 166 |
+
<span>KRNL</span>
|
| 167 |
+
</li>
|
| 168 |
+
</ul>
|
| 169 |
+
</div>
|
| 170 |
+
|
| 171 |
+
<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">
|
| 172 |
+
<i data-feather="download"></i> Download Script
|
| 173 |
+
</button>
|
| 174 |
+
</div>
|
| 175 |
+
</div>
|
| 176 |
+
</div>
|
| 177 |
+
</main>
|
| 178 |
+
|
| 179 |
+
<custom-footer></custom-footer>
|
| 180 |
+
|
| 181 |
+
<script src="components/navbar.js"></script>
|
| 182 |
+
<script src="components/footer.js"></script>
|
| 183 |
+
<script src="script.js"></script>
|
| 184 |
+
<script>feather.replace();</script>
|
| 185 |
+
</body>
|
| 186 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Copy script functionality
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
// Initialize tooltips
|
| 4 |
+
const tooltipTriggers = document.querySelectorAll('[data-tooltip]');
|
| 5 |
+
tooltipTriggers.forEach(trigger => {
|
| 6 |
+
trigger.addEventListener('mouseenter', function() {
|
| 7 |
+
const tooltip = document.createElement('div');
|
| 8 |
+
tooltip.className = 'absolute z-10 bg-gray-800 text-white text-xs px-2 py-1 rounded shadow-lg';
|
| 9 |
+
tooltip.textContent = this.getAttribute('data-tooltip');
|
| 10 |
+
this.appendChild(tooltip);
|
| 11 |
+
|
| 12 |
+
this.addEventListener('mouseleave', function() {
|
| 13 |
+
tooltip.remove();
|
| 14 |
+
});
|
| 15 |
+
});
|
| 16 |
+
});
|
| 17 |
+
|
| 18 |
+
// Copy script button
|
| 19 |
+
const copyButtons = document.querySelectorAll('[data-copy-script]');
|
| 20 |
+
copyButtons.forEach(button => {
|
| 21 |
+
button.addEventListener('click', function() {
|
| 22 |
+
const scriptCode = this.previousElementSibling.textContent;
|
| 23 |
+
navigator.clipboard.writeText(scriptCode).then(() => {
|
| 24 |
+
const originalText = this.innerHTML;
|
| 25 |
+
this.innerHTML = '<i data-feather="check"></i> Copied!';
|
| 26 |
+
feather.replace();
|
| 27 |
+
|
| 28 |
+
setTimeout(() => {
|
| 29 |
+
this.innerHTML = originalText;
|
| 30 |
+
feather.replace();
|
| 31 |
+
}, 2000);
|
| 32 |
+
});
|
| 33 |
+
});
|
| 34 |
+
});
|
| 35 |
+
|
| 36 |
+
// Theme toggle functionality
|
| 37 |
+
const themeToggle = document.getElementById('theme-toggle');
|
| 38 |
+
if (themeToggle) {
|
| 39 |
+
themeToggle.addEventListener('click', function() {
|
| 40 |
+
const html = document.documentElement;
|
| 41 |
+
if (html.classList.contains('dark')) {
|
| 42 |
+
html.classList.remove('dark');
|
| 43 |
+
localStorage.setItem('theme', 'light');
|
| 44 |
+
} else {
|
| 45 |
+
html.classList.add('dark');
|
| 46 |
+
localStorage.setItem('theme', 'dark');
|
| 47 |
+
}
|
| 48 |
+
});
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
// Check for saved theme preference
|
| 52 |
+
if (localStorage.getItem('theme') === 'light') {
|
| 53 |
+
document.documentElement.classList.remove('dark');
|
| 54 |
+
}
|
| 55 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,62 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
| 2 |
+
|
| 3 |
body {
|
| 4 |
+
font-family: 'Inter', sans-serif;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
/* Custom scrollbar */
|
| 8 |
+
::-webkit-scrollbar {
|
| 9 |
+
width: 8px;
|
| 10 |
+
height: 8px;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
::-webkit-scrollbar-track {
|
| 14 |
+
background: #1a1a1a;
|
| 15 |
}
|
| 16 |
|
| 17 |
+
::-webkit-scrollbar-thumb {
|
| 18 |
+
background: #4b5563;
|
| 19 |
+
border-radius: 4px;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
::-webkit-scrollbar-thumb:hover {
|
| 23 |
+
background: #6b7280;
|
|
|
|
|
|
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
+
/* Code block styling */
|
| 27 |
+
pre {
|
| 28 |
+
white-space: pre-wrap;
|
| 29 |
+
word-wrap: break-word;
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
+
/* Animation for buttons */
|
| 33 |
+
button, a[role="button"] {
|
| 34 |
+
transition: all 0.2s ease;
|
| 35 |
}
|
| 36 |
+
|
| 37 |
+
/* Tooltip styles */
|
| 38 |
+
.tooltip {
|
| 39 |
+
position: relative;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.tooltip .tooltip-text {
|
| 43 |
+
visibility: hidden;
|
| 44 |
+
width: 120px;
|
| 45 |
+
background-color: #111827;
|
| 46 |
+
color: #fff;
|
| 47 |
+
text-align: center;
|
| 48 |
+
border-radius: 6px;
|
| 49 |
+
padding: 5px;
|
| 50 |
+
position: absolute;
|
| 51 |
+
z-index: 1;
|
| 52 |
+
bottom: 125%;
|
| 53 |
+
left: 50%;
|
| 54 |
+
margin-left: -60px;
|
| 55 |
+
opacity: 0;
|
| 56 |
+
transition: opacity 0.3s;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.tooltip:hover .tooltip-text {
|
| 60 |
+
visibility: visible;
|
| 61 |
+
opacity: 1;
|
| 62 |
+
}
|
submit.html
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Submit Script | Roblox Script Haven</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 |
+
</head>
|
| 12 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 13 |
+
<custom-navbar></custom-navbar>
|
| 14 |
+
|
| 15 |
+
<main class="container mx-auto px-4 py-8 max-w-3xl">
|
| 16 |
+
<div class="mb-8">
|
| 17 |
+
<h1 class="text-3xl font-bold mb-2">Submit Your Script</h1>
|
| 18 |
+
<p class="text-gray-400">Share your Roblox script with the community and help fellow players</p>
|
| 19 |
+
</div>
|
| 20 |
+
|
| 21 |
+
<form class="bg-gray-800 rounded-xl p-6 border border-gray-700">
|
| 22 |
+
<div class="mb-6">
|
| 23 |
+
<label for="script-name" class="block text-sm font-medium mb-2">Script Name</label>
|
| 24 |
+
<input type="text" id="script-name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="e.g. Infinite Yield">
|
| 25 |
+
</div>
|
| 26 |
+
|
| 27 |
+
<div class="mb-6">
|
| 28 |
+
<label for="script-description" class="block text-sm font-medium mb-2">Description</label>
|
| 29 |
+
<textarea id="script-description" rows="4" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="Describe what your script does..."></textarea>
|
| 30 |
+
</div>
|
| 31 |
+
|
| 32 |
+
<div class="mb-6">
|
| 33 |
+
<label for="script-code" class="block text-sm font-medium mb-2">Script Code</label>
|
| 34 |
+
<textarea id="script-code" rows="8" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="Paste your Lua script here..."></textarea>
|
| 35 |
+
</div>
|
| 36 |
+
|
| 37 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
|
| 38 |
+
<div>
|
| 39 |
+
<label for="script-category" class="block text-sm font-medium mb-2">Category</label>
|
| 40 |
+
<select id="script-category" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent">
|
| 41 |
+
<option value="">Select a category</option>
|
| 42 |
+
<option value="admin">Admin</option>
|
| 43 |
+
<option value="exploit">Exploit</option>
|
| 44 |
+
<option value="esp">ESP</option>
|
| 45 |
+
<option value="hub">Game Hub</option>
|
| 46 |
+
<option value="other">Other</option>
|
| 47 |
+
</select>
|
| 48 |
+
</div>
|
| 49 |
+
<div>
|
| 50 |
+
<label for="script-executor" class="block text-sm font-medium mb-2">Recommended Executor</label>
|
| 51 |
+
<select id="script-executor" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent">
|
| 52 |
+
<option value="">Select executor</option>
|
| 53 |
+
<option value="synapse">Synapse X</option>
|
| 54 |
+
<option value="krnl">KRNL</option>
|
| 55 |
+
<option value="scriptware">Script-Ware</option>
|
| 56 |
+
<option value="any">Any Executor</option>
|
| 57 |
+
</select>
|
| 58 |
+
</div>
|
| 59 |
+
</div>
|
| 60 |
+
|
| 61 |
+
<div class="mb-6">
|
| 62 |
+
<label class="flex items-center">
|
| 63 |
+
<input type="checkbox" class="rounded bg-gray-700 border-gray-600 text-primary-500 focus:ring-primary-500">
|
| 64 |
+
<span class="ml-2 text-sm">I confirm this script is safe and doesn't contain malware</span>
|
| 65 |
+
</label>
|
| 66 |
+
</div>
|
| 67 |
+
|
| 68 |
+
<div class="flex justify-end gap-4">
|
| 69 |
+
<a href="index.html" class="px-6 py-2 rounded-lg border border-gray-600 hover:bg-gray-700 transition-colors">Cancel</a>
|
| 70 |
+
<button type="submit" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-2 rounded-lg font-medium transition-colors flex items-center gap-2">
|
| 71 |
+
<i data-feather="upload"></i> Submit Script
|
| 72 |
+
</button>
|
| 73 |
+
</div>
|
| 74 |
+
</form>
|
| 75 |
+
</main>
|
| 76 |
+
|
| 77 |
+
<custom-footer></custom-footer>
|
| 78 |
+
|
| 79 |
+
<script src="components/navbar.js"></script>
|
| 80 |
+
<script src="components/footer.js"></script>
|
| 81 |
+
<script src="script.js"></script>
|
| 82 |
+
<script>feather.replace();</script>
|
| 83 |
+
</body>
|
| 84 |
+
</html>
|