-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrules.html
More file actions
387 lines (360 loc) · 17.3 KB
/
rules.html
File metadata and controls
387 lines (360 loc) · 17.3 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!--
MIT License
Copyright (c) 2024-2025 JustStudio. <https://juststudio.is-a.dev/>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
\-->
<!-- JustStudio. /-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rules for Players | JustStudio.</title>
<meta name="title" content="Rules for Players | JustStudio.">
<meta name="keywords" content="JustStudio,System,Development,Studio,Team,Roblox,Games,Products,API">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<script> // Debug url script by JustStudio. \\ https://juststudio.is-a.dev
let url = window.location.href;
if (url.match("index.html")) {
window.location.href = url.replace("index.html", "");
} else if (url.match(".html")) {
window.location.href = url.replace(".html", "");
} else if (url.match(/\.\w+$/)) {
window.location.href = "/";
}
</script>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": "1",
"name": "JustStudio.",
"item": "https://juststudio.is-a.dev/"
},
{
"@type": "ListItem",
"position": "2",
"name": "Rules for Players",
"item": "https://juststudio.is-a.dev/rules"
}
]
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PH7JXLSWPX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PH7JXLSWPX');
</script>
<!-- End Google tag -->
<script src="https://analytics.juststudio.is-a.dev/"></script>
<style>
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1000001;
width: 60px;
height: 60px;
margin: -35px 0 0 -35px;
border: 5px solid rgba(0,0,0,0);
border-radius: 50%;
border-top: 5px solid white;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1s linear infinite;
transition-duration: 0.5s;
}
#loaderbg {
position: absolute;
background-color: #1437f3;
width: 100%;
height: 100%;
z-index: 1000000;
transition-duration: 0.5s;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
#content {
display: none;
text-align: center;
}
.t-purple #loaderbg {
background-color: #7d53ea;
}
.t-light #loaderbg {
background-color: #576fef;
}
</style>
<meta name="description" content="a System Development Studio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://juststudio.is-a.dev/rules" />
<meta property="og:title" content="JustStudio." />
<meta property="og:description" content="a System Development Studio." />
<meta
property="og:image"
content="https://aheioqhobo.cloudimg.io/v7/_playground-bucket-v2.teleporthq.io_/9819bb2f-010c-481e-936e-0ff85d44f8ab/625cbb43-03ab-4c43-a651-4d2c6f313215?org_if_sml=1&force_format=original"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="vk:image" content="http://juststudio.is-a.dev/logo-200h-b.png" />
<style data-tag="reset-style-sheet">
html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
</style>
<style data-tag="default-style-sheet">
html {
font-family: Inter;
font-size: 16px;
}
body {
font-weight: 400;
font-style:normal;
text-decoration: none;
text-transform: none;
letter-spacing: normal;
line-height: 1.15;
color: var(--dl-color-theme-neutral-dark);
background-color: var(--dl-color-theme-neutral-light);
fill: var(--dl-color-theme-neutral-dark);
}
</style>
<link
rel="stylesheet"
href="https://unpkg.com/animate.css@4.1.1/animate.css"
/>
<link
rel="shortcut icon"
href="img/1714165239.602498-1f96a837-e638-476a-81d3-75b9f25ed066.png"
type="icon/png"
sizes="32x32"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
data-tag="font"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@200;300;400;500;600;700;800&display=swap"
data-tag="font"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
data-tag="font"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap"
data-tag="font"
/>
<link
rel="stylesheet"
href="https://unpkg.com/@teleporthq/teleport-custom-scripts/dist/style.css"
/>
<script type="text/javascript">
const JSLstyles = [
'color: white',
'background: blue',
'font-size: 30px',
'border: 1px solid white',
'text-shadow: 2px 2px black',
'padding: 10px',
].join(';');
const WARNstyles = [
'color: black',
'background: yellow',
'font-size: 60px',
'border: 1px solid red',
'text-shadow: 0px 0px black',
'padding: 5px',
].join(';');
setTimeout(() => {
console.clear();
console.info("Powered by JustStudio.");
console.info("https://juststudio.dcms.site");
console.log('%cJustStudio.', JSLstyles);
console.log('');
console.log('%cSTOP!', WARNstyles);
console.log('WARNING! We strongly do NOT recommended doing anything in the developer tools menu!');
console.log('If someone told you to paste or copy or change something, they are most likely truing to hack you/your account!');
}, 7500);
</script>
<script type="text/javascript">
let title = document.title;
window.addEventListener('blur', () => {
document.title = "JustStudio.";
});
window.addEventListener('focus', () => {
document.title = title;
});
</script>
<style>
.wavebar-svg-object {
margin-left: 0px;
}
@-webkit-keyframes wavebar-svg-object{0%{margin-left:0}100%{margin-left:-1600px}}@keyframes wavebar-svg-object{0%{margin-left:0}100%{margin-left:-1600px}}
</style>
<script type="text/javascript" src="https://juststudio.is-a.dev/js/navbar.js" defer></script>
</head>
<body>
<link href="https://juststudio.is-a.dev/css/themes.css" rel="stylesheet" />
<div id="loader"></div>
<div id="loaderbg"></div>
<noscript>
<span style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(111%) rotateZ(2deg); color: #FFFFFF; z-index: 1000001; padding: 2px; background-color: rgba(0,0,0,0.33); border-radius: 5px; border-style: solid; border-width: 2px; border-color: #FFFFFF; backdrop-filter: blur(4px); box-shadow: 2px 2px 5px 0px #FFFFFF;">
You need to enable JavaScript in your browser settings to access this website.
</span>
</noscript>
<link rel="stylesheet" href="./css/style.css" />
<script
async
crossorigin="anonymous"
data-clerk-publishable-key="pk_live_Y2xlcmsuanVzdHN0dWRpby5pcy1hLmRldiQ"
src="https://clerk.juststudio.is-a.dev/npm/@clerk/clerk-js@5/dist/clerk.browser.js"
type="text/javascript">
</script>
<div id="accounts"></div>
<script type="module" src="https://juststudio.is-a.dev/js/account.js" defer></script>
<div id="content">
<link href="./css/rules-for-players.css" rel="stylesheet" />
<link href="./css/index.css" rel="stylesheet" />
<link
rel="stylesheet"
href="./css/menu.css"
/>
<div class="rules-for-players-container">
<div class="rules-for-players-bg">
<img
alt="image"
src="img/wavebar.svg"
loading="eager"
class="rules-for-players-wave wavebar-svg-object"
/>
<img
alt="image"
src="img/wavebar.svg"
loading="eager"
class="rules-for-players-wave1 wavebar-svg-object"
/>
</div>
<div class="rules-for-players-main">
<div class="rules-for-players-info1">
<h1 class="rules-for-players-name4 text-shadow">
<span class="txt13">Rules for Players</span>
</h1>
<h1 class="rules-for-players-desc4 text-shadow">
<span class="txt14">
Rules for players playing games by "JustStudio." on the Roblox platform.</span>
</h1>
<h1 class="rules-for-players-name5 text-shadow txt15">General</h1>
<h1 class="rules-for-players-desc5 text-shadow">
<span class="txt16">Follow the <a target="_blank" href="https://en.help.roblox.com/hc/en-us/articles/115004647846-Roblox-Terms-of-Use" rel="noreferrer noopener nofollow" style="text-decoration: underline;">Terms of Use of the Roblox platform</a>. In short, a few simple rules: Do not swear. Treat everyone with respect. No dating, or other type of adult content. No discrimination. No propaganda of anything. It is also forbidden to mention/recreate terrorist attacks or something like that. Do not use cheats/exploits/anything like that. Play the games honestly, and enjoy the games. Note: The rules provided above are not the official rules of the Roblox platform. They may also be incorrect or outdated. Please read the <a target="_blank" href="https://en.help.roblox.com/hc/en-us/articles/115004647846-Roblox-Terms-of-Use" rel="noreferrer noopener nofollow" style="text-decoration: underline;">Roblox Terms of Use</a>.</span>
</h1>
<h1 class="rules-for-players-name6 text-shadow txt17">
JustStudio.Rules
</h1>
<h1 class="rules-for-players-desc6 text-shadow">
<span class="txt18">Playing our games published on the Roblox platform means that you agree to these rules, as well as the User Agreement. If the violator does not know these rules or does not agree with these rules, this does not exempt him from punishment (temporary ban or ban forever). We have done everything to make sure that all players know these rules: We have placed links to our discord server wherever possible in Roblox, and through our discord server you can get to these rules. We are not partners/part/division/etc. of Roblox Corporation. All players must respect moderation and administration. If the moderation/administration has done some actions, as it seems to you, the actions were done by mistake or by accident, contact our support located on our <a href="https://discord.gg/aHXxS6VvcC" target="_blank"><span style="text-decoration: underline;">Discord server</span></a>. Treat "JustStudio.", Administration, Moderation, Developers, and our Partners, and also other players with respect. Any kind of disrespect, bullying, etc. is strictly prohibited!</span></h1>
<div class="rules-for-players-info">
<h1 class="rules-for-players-name text-shadow txt19">About Bans</h1>
<h1 class="rules-for-players-desc text-shadow">
<span class="txt20">About Bans on games and any other assets that created by "JustStudio." on the Roblox platform. We reserve the right to prohibit banned users from playing games using our assets.</span>
</h1>
<h1 class="rules-for-players-name1 text-shadow txt21">Reason</h1>
<h1 class="rules-for-players-desc1 text-shadow">
<span class="txt22">We can ban you on our games and services and assets if you violate the Rules for Players or the User Agreement. You can also get banned if: you are a friend/ally/partner/etc. of the one who got banned; or if you did an attack/raid on "JustStudio." or were a participant of the attack/raid; or if you are trying to find loopholes in the rules or agreements or terms.
</span>
</h1>
<h1 class="rules-for-players-name2 text-shadow txt23">Details</h1>
<h1 class="rules-for-players-desc2 text-shadow">
<span class="txt24">If you are banned for actions in our game, then you will get temporary ban (depending on actions) in the game or a ban forever on services and assets created by "JustStudio."; Or if you are banned for actions in any of our services/assets but not in our game, then you will get banned forever absolutely on all games/services/assets created by "JustStudio."</span>
</h1>
<h1 class="rules-for-players-name3 text-shadow txt25">Appeals</h1>
<h1 class="rules-for-players-desc3 text-shadow">
<span class="txt26">If you think that you were banned by mistake, you can appeal on our <a href="https://discord.gg/aHXxS6VvcC" target="_blank"><span style="text-decoration: underline;">Discord server</span></a>.</span>
</h1>
<h1 class="rules-for-players-name3 text-shadow txt27" style="margin-top: 1.5em">Information</h1>
<h1 class="rules-for-players-desc3 text-shadow">
<span class="txt28">Last Updated: December 25th, 2024<br>Version: 1.3.1</span>
</h1>
</div>
</div>
</div>
<link href="https://juststudio.is-a.dev/css/navbar.css" rel="stylesheet" />
<a
href="https://juststudio.is-a.dev/"
rel="noreferrer noopener"
class="h-logo-link"
>
<img src="https://juststudio.is-a.dev/img/logo-200h.png" alt="image" class="h-logo" />
</a>
<div class="header"></div>
</div>
</div>
<script type="text/javascript">
document.ondragstart = noselect;
document.onselectstart = noselect;
document.oncontextmenu = noselect;
function noselect() {return false;}
</script>
<script>
var something;
function activate() {
something = setTimeout(showPage, 2500);
};
function showPage() {
document.getElementById("content").style.display = "block";
document.getElementById("loader").style.opacity = 0;
otherthng = setTimeout(showPage02, 500);
};
function showPage02() {
document.getElementById("loaderbg").style.opacity = 0;
otherthng = setTimeout(activatePage, 500);
};
function activatePage() {
document.getElementById("loader").style.display = "none";
document.getElementById("loaderbg").style.display = "none";
document.getElementById("loader").style["z-index"] = -5;
document.getElementById("loaderbg").style["z-index"] = -5;
document.getElementById("loader").remove();
document.getElementById("loaderbg").remove();
};
activate();
</script>
</body>
</html>