-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
63 lines (55 loc) · 1.83 KB
/
tools.html
File metadata and controls
63 lines (55 loc) · 1.83 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tools - WeAreDevs Clone</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="logo">WeAreDevs</div>
<nav>
<a href="index.html">Home</a>
<a href="tools.html">Exploits</a>
<a href="#">APIs</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="tools">
<h2>All Tools</h2>
<div class="tool-grid">
<div class="tool-card">
<h3>JJSploit</h3>
<p>Simple and easy Lua executor for Roblox.</p>
<a href="files/JJSploit.zip" download class="btn small">Download</a>
</div>
<div class="tool-card">
<h3>Krnl</h3>
<p>Stable, powerful exploit with custom DLL injection.</p>
<a href="files/Krnl.zip" download class="btn small">Download</a>
</div>
<div class="tool-card">
<h3>Fluxus</h3>
<p>Supports a wide range of scripts and updates frequently.</p>
<a href="files/Fluxus.zip" download class="btn small">Download</a>
</div>
<div class="tool-card">
<h3>Electron</h3>
<p>A clean and fast exploit with beautiful UI.</p>
<a href="files/Electron.zip" download class="btn small">Download</a>
</div>
<div class="tool-card">
<h3>Oxygen U</h3>
<p>Well-known UI library with script support.</p>
<a href="files/OxygenU.zip" download class="btn small">Download</a>
</div>
<div class="tool-card">
<h3>WRD API</h3>
<p>Integrate your own app using WeAreDevs API.</p>
<a href="files/WRD_API.zip" download class="btn small">Download</a>
</div>
</div>
</section>
</body>
</html>