-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (146 loc) · 3.99 KB
/
index.html
File metadata and controls
165 lines (146 loc) · 3.99 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE HTML>
<html>
<head>
<meta charset = "utf-8">
<link rel = "shortcut icon" type = "image/x-icon" href="Logo.ico" />
<meta name = "author" content = "CriShoux" />
<meta name = "description" content = "CriShoux's favorite scripts." />
<meta name = "keywords" content = "Scripts, Roblox" />
<meta property = "og:title" content = "CriShoux Scripts" />
<meta property = "og:description" content = "CriShoux's favorite scripts." />
<meta property = "og:type" content = "website" />
<meta property = "og:url" content = "https://crishoux.github.io" />
<meta property = "og:secure_url" content = "https://crishoux.github.io">
<meta property = "og:image" content = "https://crishoux.github.io/Logo.ico" />
<title>CriShoux Scripts</title>
<style>
body
{
background-color: #232323;
background-image: url(Landscape.jpg);
background-attachment: fixed;
background-size: cover;
background-repeat:
no-repeat;"
TEXT = "#ffffff"
}
#Header, #Scripts
{
text-align: center;
animation: fadeIn 2s
}
#Header h1
{
margin: 18px;
color: #ffffff;
font-family: "Trebuchet MS";
}
#Scripts a:hover
{
color: #bcbcbc;
text-decoration: none;
font-size: 30px;
}
#Scripts
{
margin: 35px;
}
#Scripts a
{
line-height: 60px;
color: #e8e8e8;
font-family: Monospace;
font-size: 25px;
}
#Message
{
margin-top: 140px;
text-align: center;
color: #a8a8a8;
font-family: Helvetica;
font-size: 45px;
}
@keyframes fadeIn
{
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id = "Header">
<h1><font size = "25">CriShoux's Favorite Scripts</font></h1>
</div>
<div id = "Scripts">
<a href="https://crishoux.github.io/Aimbot.txt" target = "_blank">Aimbot</a>
<br>
<a href="https://crishoux.github.io/ESP.txt" target = "_blank">ESP</a>
<br>
<a href="https://crishoux.github.io/Shattervast.txt" target = "_blank">Shattervast Admin</a>
<br>
<a href="https://crishoux.github.io/DestroyTool.txt" target = "_blank">Destroy Tool</a>
<br>
<a href="https://crishoux.github.io/DestroyGUI.txt" target = "_blank">Destroy GUI</a>
<br>
<a href="https://crishoux.github.io/InfiniteYieldFE.txt" target = "_blank">Infinite Yield FE</a>
<br>
<a href="https://crishoux.github.io/FlyWedge.txt" target = "_blank">Fly Wedge</a>
<br>
<a href="https://crishoux.github.io/YeetAPlayer.txt" target = "_blank">Yeet A Player</a>
<br>
<a href="https://crishoux.github.io/LazarusGUI.txt" target = "_blank">Lazarus GUI</a>
</div>
<div>
<p id = "Message">N/A</p>
</div>
<script type = "text/javascript">
let phraseList = [
"no scripts here",
"hello there",
"roblox",
"scripts",
"roblox scripts",
"welcome",
"crishoux's favorite scripts",
"if you're seeing this, you're very special",
"very cool indeed",
"nothing to see here",
"click the links to see the scripts!",
"be a cool robloxian!",
"nice job",
"no way, lol!",
"that's a lot of damage",
"what a troll!",
"you enjoying your stay?",
"that's no fun!",
"only 1% of people can see this message",
"print('elite scripter')",
"funny!",
"nice joke!",
"lolol!",
"you can't fool me with that one!",
"why did the chicken cross the road?",
"cool!",
"index.html",
"roblox.lua",
"just do it",
"i'm lovin' it",
"what are you doing?",
"hello?",
"don't do it!",
"!",
"enjoy the scripts",
"why did you do that?",
"are you refreshing?",
"but can you do this?",
"wait a minute... who are you?"
];
var element = document.getElementById("Message");
element.innerHTML = phraseList[Math.floor(Math.random() * phraseList.length)];
</script>
</body>
</html>