Skip to content

Commit 573631d

Browse files
Update index.html
1 parent d85966c commit 573631d

File tree

1 file changed

+99
-76
lines changed

1 file changed

+99
-76
lines changed

index.html

Lines changed: 99 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -2,148 +2,171 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>POBFUS | 1.13.100</title>
5+
<title>POBFUS | Bytesmas Priority Build</title>
66
<style>
77
:root {
88
--gh-bg: #0d1117;
99
--gh-border: #30363d;
10-
--gh-text: #c9d1d9;
10+
--gh-sidebar: #161b22;
1111
--rbx-log-bg: #1b1b1b;
1212
--p-green: #39ff14;
1313
--p-blue: #79c0ff;
1414
--p-purple: #d2a8ff;
1515
--p-red: #ff3131;
16+
--p-gold: #ffcc00;
1617
}
1718

1819
body {
1920
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;
2223
margin: 0;
2324
display: flex;
2425
flex-direction: column;
2526
height: 100vh;
2627
overflow: hidden;
2728
}
2829

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+
3042
header {
3143
background: var(--gh-bg);
3244
border-bottom: 1px solid var(--gh-border);
33-
padding: 10px 20px;
45+
padding: 0 15px;
3446
display: flex;
3547
align-items: center;
3648
justify-content: space-between;
49+
height: 48px;
3750
}
3851

39-
.header-brand {
40-
display: flex;
41-
align-items: center;
42-
gap: 12px;
43-
}
52+
.app-container { display: flex; flex: 1; overflow: hidden; }
4453

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;
4859
}
4960

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 {
5265
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;
5675
}
76+
.toggle-btn.active { border-color: var(--p-red); color: #fff; }
5777

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; }
6479

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;
7182
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;
7289
}
7390

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+
7495
textarea {
7596
flex: 1;
76-
background: var(--gh-bg);
77-
border: none;
97+
background: #010409;
7898
padding: 15px;
7999
font-family: inherit;
80100
font-size: 13px;
81101
resize: none;
82102
outline: none;
83-
line-height: 1.6;
103+
border: none;
104+
color: var(--p-blue);
84105
}
85106

86-
#input { color: var(--p-blue); }
87-
#output-view { color: var(--p-purple); background: #090c10; }
88-
89-
/* ROBLOX 2017-2019 LOGS: Scrollable & Bottom-fixed */
90107
#steve-logs {
91108
height: 220px;
92109
background: var(--rbx-log-bg);
93110
border-top: 2px solid #444;
94-
overflow-y: auto; /* Scrollable */
111+
overflow-y: scroll;
95112
padding: 10px;
96-
font-family: "Consolas", monospace;
97113
font-size: 12px;
98-
color: #fff;
99114
}
100115

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; }
122118
</style>
123119
</head>
124120
<body>
125121

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+
126127
<header>
127128
<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>
130130
</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>
132132
</header>
133133

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>
142167
</div>
143168
</div>
144169

145-
<div id="steve-logs"></div>
146-
147170
<script src="script.js"></script>
148171
</body>
149-
</html>
172+
</html>

0 commit comments

Comments
 (0)