Skip to content

Commit d339e19

Browse files
Update index.html
1 parent b08c414 commit d339e19

File tree

1 file changed

+114
-132
lines changed

1 file changed

+114
-132
lines changed

index.html

Lines changed: 114 additions & 132 deletions
Original file line numberDiff line numberDiff line change
@@ -2,166 +2,148 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
65
<title>POBFUS | 1.13.100</title>
76
<style>
8-
/* POBFUS SYSTEM PALETTE */
9-
:root {
10-
--p-green: #39ff14;
7+
:root {
8+
--gh-bg: #0d1117;
9+
--gh-border: #30363d;
10+
--gh-text: #c9d1d9;
11+
--rbx-log-bg: #1b1b1b;
12+
--p-green: #39ff14;
13+
--p-blue: #79c0ff;
14+
--p-purple: #d2a8ff;
1115
--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);
1816
}
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;
17+
18+
body {
19+
background-color: #010409;
20+
color: var(--gh-text);
21+
font-family: "JetBrains Mono", "Fira Code", monospace;
22+
margin: 0;
23+
display: flex;
24+
flex-direction: column;
2825
height: 100vh;
26+
overflow: hidden;
2927
}
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);
28+
29+
/* HEADER: Lua logo on the left of the title */
30+
header {
31+
background: var(--gh-bg);
32+
border-bottom: 1px solid var(--gh-border);
33+
padding: 10px 20px;
34+
display: flex;
35+
align-items: center;
36+
justify-content: space-between;
4537
}
4638

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;
39+
.header-brand {
40+
display: flex;
41+
align-items: center;
42+
gap: 12px;
5643
}
57-
58-
#lua-logo-main {
59-
width: 42px;
60-
filter: brightness(0) invert(1);
61-
opacity: 0.8;
44+
45+
#lua-logo-main {
46+
width: 24px;
47+
filter: invert(1);
6248
}
63-
64-
main {
65-
width: 90%;
66-
max-width: 1100px;
67-
padding-top: 20px;
49+
50+
/* DUAL PANES */
51+
.workspace {
52+
display: flex;
53+
flex: 1;
54+
overflow: hidden;
55+
border-bottom: 1px solid var(--gh-border);
56+
}
57+
58+
.pane {
59+
flex: 1;
6860
display: flex;
6961
flex-direction: column;
70-
flex-grow: 1;
62+
border-right: 1px solid var(--gh-border);
7163
}
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;
64+
65+
.pane-label {
66+
background: #161b22;
67+
padding: 6px 15px;
68+
font-size: 11px;
69+
color: #8b949e;
70+
text-transform: uppercase;
71+
border-bottom: 1px solid var(--gh-border);
8772
}
8873

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;
74+
textarea {
75+
flex: 1;
76+
background: var(--gh-bg);
77+
border: none;
78+
padding: 15px;
79+
font-family: inherit;
80+
font-size: 13px;
81+
resize: none;
82+
outline: none;
83+
line-height: 1.6;
10684
}
107-
108-
textarea:focus { border: 1px solid var(--p-green); }
10985

110-
.btn-row {
111-
display: flex;
112-
justify-content: flex-end;
113-
padding-bottom: 30px;
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+
#steve-logs {
91+
height: 220px;
92+
background: var(--rbx-log-bg);
93+
border-top: 2px solid #444;
94+
overflow-y: auto; /* Scrollable */
95+
padding: 10px;
96+
font-family: "Consolas", monospace;
97+
font-size: 12px;
98+
color: #fff;
11499
}
115100

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;
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;
123111
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);
112+
font-family: inherit;
113+
transition: 0.2s;
132114
}
133115

116+
button:hover { background: #2ea043; }
117+
134118
/* 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; }
119+
::-webkit-scrollbar { width: 10px; }
120+
::-webkit-scrollbar-track { background: #010409; }
121+
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 5px; }
139122
</style>
140123
</head>
141124
<body>
142125

143-
<div id="err-bar">SYSTEM ALERT: POBFUS KERNEL REJECTED REQUEST</div>
144-
145-
<header>
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>
150-
</header>
151-
152-
<main>
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>
157-
</div>
126+
<header>
127+
<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>
130+
</div>
131+
<button onclick="_011._dl()">Execute & Download</button>
132+
</header>
158133

159-
<div class="btn-row">
160-
<button onclick="_011._dl()">Obfuscate & Download</button>
161-
</div>
162-
</main>
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>
142+
</div>
143+
</div>
163144

164-
<script src="script.js"></script>
145+
<div id="steve-logs"></div>
165146

147+
<script src="script.js"></script>
166148
</body>
167-
</html>
149+
</html>

0 commit comments

Comments
 (0)