|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>POBFUS | 110\011</title> |
7 | | - <link rel="stylesheet" href="style.css"> |
| 6 | + <title>POBFUS | 1.13.100</title> |
| 7 | + <style> |
| 8 | + /* POBFUS SYSTEM PALETTE */ |
| 9 | + :root { |
| 10 | + --p-green: #39ff14; |
| 11 | + --p-red: #ff3131; |
| 12 | + --p-blue: #00aaff; |
| 13 | + --p-pink: #ff00ff; |
| 14 | + --p-gold: #ffcc00; |
| 15 | + --bg: #050505; |
| 16 | + --panel: #0d0d0d; |
| 17 | + --border: rgba(57, 255, 20, 0.15); |
| 18 | + } |
| 19 | + |
| 20 | + body { |
| 21 | + background: var(--bg); |
| 22 | + color: #eeeeee; |
| 23 | + font-family: 'Consolas', 'Courier New', monospace; |
| 24 | + margin: 0; |
| 25 | + display: flex; |
| 26 | + flex-direction: column; |
| 27 | + align-items: center; |
| 28 | + height: 100vh; |
| 29 | + } |
| 30 | + |
| 31 | + /* Anti-Tamper Mary's Error Bar */ |
| 32 | + #err-bar { |
| 33 | + width: 100%; |
| 34 | + background: var(--p-red); |
| 35 | + color: #fff; |
| 36 | + text-align: center; |
| 37 | + padding: 10px 0; |
| 38 | + font-weight: bold; |
| 39 | + font-size: 12px; |
| 40 | + display: none; |
| 41 | + position: absolute; |
| 42 | + top: 0; |
| 43 | + z-index: 999; |
| 44 | + box-shadow: 0 4px 10px rgba(255, 49, 49, 0.3); |
| 45 | + } |
| 46 | + |
| 47 | + header { |
| 48 | + width: 100%; |
| 49 | + padding: 15px 0; |
| 50 | + border-bottom: 1px solid var(--border); |
| 51 | + display: flex; |
| 52 | + align-items: center; |
| 53 | + justify-content: center; |
| 54 | + gap: 15px; |
| 55 | + background: #000; |
| 56 | + } |
| 57 | + |
| 58 | + #lua-logo-main { |
| 59 | + width: 42px; |
| 60 | + filter: brightness(0) invert(1); |
| 61 | + opacity: 0.8; |
| 62 | + } |
| 63 | + |
| 64 | + main { |
| 65 | + width: 90%; |
| 66 | + max-width: 1100px; |
| 67 | + padding-top: 20px; |
| 68 | + display: flex; |
| 69 | + flex-direction: column; |
| 70 | + flex-grow: 1; |
| 71 | + } |
| 72 | + |
| 73 | + /* ROBLOX STUDIO OUTPUT EMULATION */ |
| 74 | + #steve-logs { |
| 75 | + background: #000; |
| 76 | + border: 1px solid var(--border); |
| 77 | + padding: 12px; |
| 78 | + height: 180px; |
| 79 | + overflow-y: auto; |
| 80 | + font-size: 12px; |
| 81 | + line-height: 1.5; |
| 82 | + margin-bottom: 15px; |
| 83 | + border-radius: 3px; |
| 84 | + white-space: pre-wrap; |
| 85 | + scrollbar-width: thin; |
| 86 | + scrollbar-color: #333 #000; |
| 87 | + } |
| 88 | + |
| 89 | + /* TEXTAREA & INPUT */ |
| 90 | + .editor-container { position: relative; flex-grow: 1; margin-bottom: 20px; } |
| 91 | + |
| 92 | + textarea { |
| 93 | + width: 100%; |
| 94 | + height: 100%; |
| 95 | + min-height: 350px; |
| 96 | + background: var(--panel); |
| 97 | + border: 1px solid #1a1a1a; |
| 98 | + color: #d4d4d4; |
| 99 | + padding: 15px; |
| 100 | + outline: none; |
| 101 | + font-family: 'Consolas', monospace; |
| 102 | + resize: none; |
| 103 | + box-sizing: border-box; |
| 104 | + border-radius: 4px; |
| 105 | + transition: border 0.3s; |
| 106 | + } |
| 107 | + |
| 108 | + textarea:focus { border: 1px solid var(--p-green); } |
| 109 | + |
| 110 | + .btn-row { |
| 111 | + display: flex; |
| 112 | + justify-content: flex-end; |
| 113 | + padding-bottom: 30px; |
| 114 | + } |
| 115 | + |
| 116 | + button { |
| 117 | + background: transparent; |
| 118 | + border: 1px solid var(--p-green); |
| 119 | + color: var(--p-green); |
| 120 | + padding: 12px 30px; |
| 121 | + cursor: pointer; |
| 122 | + font-family: inherit; |
| 123 | + font-weight: bold; |
| 124 | + transition: all 0.2s ease-in-out; |
| 125 | + text-transform: uppercase; |
| 126 | + } |
| 127 | + |
| 128 | + button:hover { |
| 129 | + background: var(--p-green); |
| 130 | + color: #000; |
| 131 | + box-shadow: 0 0 15px rgba(57, 255, 20, 0.4); |
| 132 | + } |
| 133 | + |
| 134 | + /* Scrollbar Styling */ |
| 135 | + ::-webkit-scrollbar { width: 6px; } |
| 136 | + ::-webkit-scrollbar-track { background: #000; } |
| 137 | + ::-webkit-scrollbar-thumb { background: #222; } |
| 138 | + ::-webkit-scrollbar-thumb:hover { background: #333; } |
| 139 | + </style> |
8 | 140 | </head> |
9 | | -<body class="pobfus-theme"> |
| 141 | +<body> |
| 142 | + |
| 143 | + <div id="err-bar">SYSTEM ALERT: POBFUS KERNEL REJECTED REQUEST</div> |
10 | 144 |
|
11 | 145 | <header> |
12 | | - <div class="logo-container"> |
13 | | - <img id="lua-logo-main" src="" alt="POBFUS Logo" width="64" height="64"> |
14 | | - </div> |
15 | | - <div class="title-gate"> |
16 | | - <h1>POBFUS <span class="version">110\011</span></h1> |
17 | | - </div> |
| 146 | + <img id="lua-logo-main" src="" alt="Lua Logo"> |
| 147 | + <h1 style="font-size: 1.2rem; color: var(--p-green); margin: 0; letter-spacing: 2px;"> |
| 148 | + POBFUS <span style="font-size: 0.7rem; color: #555; vertical-align: middle; margin-left: 5px;">[BUILD 1.13.100]</span> |
| 149 | + </h1> |
18 | 150 | </header> |
19 | 151 |
|
20 | 152 | <main> |
21 | | - <div class="input-wrapper"> |
22 | | - <div id="hl-layer"></div> |
23 | | - <textarea id="input" placeholder="Enter source code to slop..."></textarea> |
| 153 | + <div id="steve-logs"></div> |
| 154 | + |
| 155 | + <div class="editor-container"> |
| 156 | + <textarea id="input" spellcheck="false" placeholder="-- [POBFUS]: Paste Lua code here for flight..."></textarea> |
24 | 157 | </div> |
25 | 158 |
|
26 | | - <pre id="steve-logs" class="terminal-output"></pre> |
27 | | - |
28 | | - <div id="output" class="hidden-results"></div> |
| 159 | + <div class="btn-row"> |
| 160 | + <button onclick="_011._dl()">Obfuscate & Download</button> |
| 161 | + </div> |
29 | 162 | </main> |
30 | 163 |
|
31 | 164 | <script src="script.js"></script> |
| 165 | + |
32 | 166 | </body> |
33 | | -</html> |
| 167 | + </html> |
0 commit comments