|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | | - <title>POBFUS | 1.13.100</title> |
| 5 | + <title>POBFUS | Bytesmas Priority Build</title> |
6 | 6 | <style> |
7 | 7 | :root { |
8 | 8 | --gh-bg: #0d1117; |
9 | 9 | --gh-border: #30363d; |
10 | | - --gh-text: #c9d1d9; |
| 10 | + --gh-sidebar: #161b22; |
11 | 11 | --rbx-log-bg: #1b1b1b; |
12 | 12 | --p-green: #39ff14; |
13 | 13 | --p-blue: #79c0ff; |
14 | 14 | --p-purple: #d2a8ff; |
15 | 15 | --p-red: #ff3131; |
| 16 | + --p-gold: #ffcc00; |
16 | 17 | } |
17 | 18 |
|
18 | 19 | body { |
19 | 20 | background-color: #010409; |
20 | | - color: var(--gh-text); |
21 | | - font-family: "JetBrains Mono", "Fira Code", monospace; |
| 21 | + color: #c9d1d9; |
| 22 | + font-family: "JetBrains Mono", monospace; |
22 | 23 | margin: 0; |
23 | 24 | display: flex; |
24 | 25 | flex-direction: column; |
25 | 26 | height: 100vh; |
26 | 27 | overflow: hidden; |
27 | 28 | } |
28 | 29 |
|
29 | | - /* HEADER: Lua logo on the left of the title */ |
| 30 | + #geo-lock { |
| 31 | + position: fixed; |
| 32 | + inset: 0; |
| 33 | + background: #000; |
| 34 | + z-index: 9999; |
| 35 | + display: none; |
| 36 | + flex-direction: column; |
| 37 | + align-items: center; |
| 38 | + justify-content: center; |
| 39 | + text-align: center; |
| 40 | + } |
| 41 | + |
30 | 42 | header { |
31 | 43 | background: var(--gh-bg); |
32 | 44 | border-bottom: 1px solid var(--gh-border); |
33 | | - padding: 10px 20px; |
| 45 | + padding: 0 15px; |
34 | 46 | display: flex; |
35 | 47 | align-items: center; |
36 | 48 | justify-content: space-between; |
| 49 | + height: 48px; |
37 | 50 | } |
38 | 51 |
|
39 | | - .header-brand { |
40 | | - display: flex; |
41 | | - align-items: center; |
42 | | - gap: 12px; |
43 | | - } |
| 52 | + .app-container { display: flex; flex: 1; overflow: hidden; } |
44 | 53 |
|
45 | | - #lua-logo-main { |
46 | | - width: 24px; |
47 | | - filter: invert(1); |
| 54 | + aside { |
| 55 | + width: 260px; |
| 56 | + background: var(--gh-sidebar); |
| 57 | + border-right: 1px solid var(--gh-border); |
| 58 | + font-size: 11px; |
48 | 59 | } |
49 | 60 |
|
50 | | - /* DUAL PANES */ |
51 | | - .workspace { |
| 61 | + .sidebar-section { padding: 15px; border-bottom: 1px solid var(--gh-border); } |
| 62 | + .sidebar-section h4 { margin: 0 0 10px 0; color: #555; text-transform: uppercase; font-size: 10px; } |
| 63 | + |
| 64 | + .toggle-btn { |
52 | 65 | display: flex; |
53 | | - flex: 1; |
54 | | - overflow: hidden; |
55 | | - border-bottom: 1px solid var(--gh-border); |
| 66 | + justify-content: space-between; |
| 67 | + align-items: center; |
| 68 | + padding: 6px 8px; |
| 69 | + background: #21262d; |
| 70 | + border: 1px solid var(--gh-border); |
| 71 | + border-radius: 4px; |
| 72 | + margin-bottom: 5px; |
| 73 | + cursor: pointer; |
| 74 | + font-size: 10px; |
56 | 75 | } |
| 76 | + .toggle-btn.active { border-color: var(--p-red); color: #fff; } |
57 | 77 |
|
58 | | - .pane { |
59 | | - flex: 1; |
60 | | - display: flex; |
61 | | - flex-direction: column; |
62 | | - border-right: 1px solid var(--gh-border); |
63 | | - } |
| 78 | + .workspace { display: flex; flex-direction: column; flex: 1; } |
64 | 79 |
|
65 | | - .pane-label { |
66 | | - background: #161b22; |
67 | | - padding: 6px 15px; |
68 | | - font-size: 11px; |
69 | | - color: #8b949e; |
70 | | - text-transform: uppercase; |
| 80 | + #status-ticker { |
| 81 | + background: #1c2128; |
71 | 82 | border-bottom: 1px solid var(--gh-border); |
| 83 | + padding: 8px 15px; |
| 84 | + font-size: 11px; |
| 85 | + text-align: center; |
| 86 | + font-weight: bold; |
| 87 | + color: var(--p-red); |
| 88 | + letter-spacing: 1px; |
72 | 89 | } |
73 | 90 |
|
| 91 | + .editors { display: flex; flex: 1; border-bottom: 1px solid var(--gh-border); } |
| 92 | + .pane { flex: 1; display: flex; flex-direction: column; border-right: 1px solid var(--gh-border); } |
| 93 | + .pane-label { background: #0d1117; padding: 6px 15px; font-size: 10px; color: #555; } |
| 94 | + |
74 | 95 | textarea { |
75 | 96 | flex: 1; |
76 | | - background: var(--gh-bg); |
77 | | - border: none; |
| 97 | + background: #010409; |
78 | 98 | padding: 15px; |
79 | 99 | font-family: inherit; |
80 | 100 | font-size: 13px; |
81 | 101 | resize: none; |
82 | 102 | outline: none; |
83 | | - line-height: 1.6; |
| 103 | + border: none; |
| 104 | + color: var(--p-blue); |
84 | 105 | } |
85 | 106 |
|
86 | | - #input { color: var(--p-blue); } |
87 | | - #output-view { color: var(--p-purple); background: #090c10; } |
88 | | - |
89 | | - /* ROBLOX 2017-2019 LOGS: Scrollable & Bottom-fixed */ |
90 | 107 | #steve-logs { |
91 | 108 | height: 220px; |
92 | 109 | background: var(--rbx-log-bg); |
93 | 110 | border-top: 2px solid #444; |
94 | | - overflow-y: auto; /* Scrollable */ |
| 111 | + overflow-y: scroll; |
95 | 112 | padding: 10px; |
96 | | - font-family: "Consolas", monospace; |
97 | 113 | font-size: 12px; |
98 | | - color: #fff; |
99 | 114 | } |
100 | 115 |
|
101 | | - .log-entry { margin-bottom: 3px; white-space: pre-wrap; border-left: 2px solid transparent; } |
102 | | - .log-ts { color: #888; margin-right: 10px; } |
103 | | - |
104 | | - button { |
105 | | - background: #238636; |
106 | | - color: white; |
107 | | - border: 1px solid rgba(240,246,252,0.1); |
108 | | - padding: 6px 16px; |
109 | | - border-radius: 6px; |
110 | | - cursor: pointer; |
111 | | - font-weight: bold; |
112 | | - font-family: inherit; |
113 | | - transition: 0.2s; |
114 | | - } |
115 | | - |
116 | | - button:hover { background: #2ea043; } |
117 | | - |
118 | | - /* Scrollbar Styling */ |
119 | | - ::-webkit-scrollbar { width: 10px; } |
120 | | - ::-webkit-scrollbar-track { background: #010409; } |
121 | | - ::-webkit-scrollbar-thumb { background: #30363d; border-radius: 5px; } |
| 116 | + .log-entry { margin-bottom: 4px; } |
| 117 | + .log-ts { color: #444; margin-right: 10px; } |
122 | 118 | </style> |
123 | 119 | </head> |
124 | 120 | <body> |
125 | 121 |
|
| 122 | +<div id="geo-lock"> |
| 123 | + <h1 style="color: var(--p-red);">UNDER CONSTRUCTION</h1> |
| 124 | + <p style="color: #8b949e;">THE SUMMER WILL MAKE A VACATION FOR THEM!</p> |
| 125 | +</div> |
| 126 | + |
126 | 127 | <header> |
127 | 128 | <div class="header-brand"> |
128 | | - <img id="lua-logo-main" src="https://img.icons8.com/?size=128&id=42bqS7y7Ga9o&format=png" alt="Lua"> |
129 | | - <span style="font-weight: bold; letter-spacing: 0.5px;">POBFUS <span style="color:#6e7681; font-weight: normal;">v1.13.100</span></span> |
| 129 | + <span style="font-weight:600; letter-spacing: 1px;">POBFUS <span style="font-weight:200; color:#444;">1.13.100</span></span> |
130 | 130 | </div> |
131 | | - <button onclick="_011._dl()">Execute & Download</button> |
| 131 | + <button style="background:#238636; color:white; border:none; padding:5px 15px; border-radius:4px; cursor:pointer;" onclick="_011._dl()">EXECUTE</button> |
132 | 132 | </header> |
133 | 133 |
|
134 | | -<div class="workspace"> |
135 | | - <div class="pane"> |
136 | | - <div class="pane-label">Source.lua</div> |
137 | | - <textarea id="input" spellcheck="false" placeholder="-- Awaiting source slop..."></textarea> |
138 | | - </div> |
139 | | - <div class="pane"> |
140 | | - <div class="pane-label">Obfuscated.lua</div> |
141 | | - <textarea id="output-view" readonly placeholder="-- Encrypted payload will appear here..."></textarea> |
| 134 | +<div class="app-container"> |
| 135 | + <aside> |
| 136 | + <div class="sidebar-section"> |
| 137 | + <h4>Override Controls</h4> |
| 138 | + <div id="toggle-bmas" class="toggle-btn" onclick="_011.toggle('bmas')"> |
| 139 | + <span>Force Bytesmas</span> |
| 140 | + <span class="status">OFF</span> |
| 141 | + </div> |
| 142 | + <div id="toggle-mday" class="toggle-btn" onclick="_011.toggle('mday')"> |
| 143 | + <span>Force Millennial Day</span> |
| 144 | + <span class="status">OFF</span> |
| 145 | + </div> |
| 146 | + </div> |
| 147 | + <div class="sidebar-section"> |
| 148 | + <h4>Archives</h4> |
| 149 | + <div style="color:#555;">v1.13.100 (Current)</div> |
| 150 | + <div style="color:#333; text-decoration: line-through;">v0.7 (Deprecated 03.08.26)</div> |
| 151 | + </div> |
| 152 | + </aside> |
| 153 | + |
| 154 | + <div class="workspace"> |
| 155 | + <div id="status-ticker">CALCULATING BYTESMAS PROXIMITY...</div> |
| 156 | + <div class="editors"> |
| 157 | + <div class="pane"> |
| 158 | + <div class="pane-label">Source.lua</div> |
| 159 | + <textarea id="input" spellcheck="false"></textarea> |
| 160 | + </div> |
| 161 | + <div class="pane"> |
| 162 | + <div class="pane-label">Obfuscated.lua</div> |
| 163 | + <textarea id="output-view" readonly></textarea> |
| 164 | + </div> |
| 165 | + </div> |
| 166 | + <div id="steve-logs"></div> |
142 | 167 | </div> |
143 | 168 | </div> |
144 | 169 |
|
145 | | -<div id="steve-logs"></div> |
146 | | - |
147 | 170 | <script src="script.js"></script> |
148 | 171 | </body> |
149 | | -</html> |
| 172 | + </html> |
0 commit comments