-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.52 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<style>
* {
user-select: none;
image-rendering: pixelated;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
}
</style>
</head>
<body>
<div style="color: white; position: absolute; left: 25%; top: 25%; width: 50%; height: 50%; background-color: rgba(255, 82, 82, 0.75); border-radius: 16px; text-align: center; display: flex; align-items: center; flex-direction: column; align-content: center; justify-content: center;">
<div id="deeznutslmao!">
<h1 style="font-weight: bold">A-90 is currently grabbing your windows.</h1>
<h1 style="font-weight: bold">Please wait for him to finish.</h1>
</div>
<br>
<h1>Settings</h1>
<p>Attempt attack every <input id="AttackInterval" type="number" value="5000">milliseconds</p>
<p><input id="AttackChance" type="number" value="40">% chance to attack every attempt</p>
<p>Close windows on attack <input id="CloseRandomWindow" type="checkbox" checked="true"></p>
<p>Only close Roblox windows <input id="CloseRobloxWindow" type="checkbox" checked="true"></p>
<br>
<p>Notice: If you enable closing windows, expect a lag spike every 10 seconds as the program needs to refresh the list of closable windows every time.</p>
<button id="Begin">Begin A-90</button>
</div>
</body>
</html>