-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterms.html
More file actions
543 lines (517 loc) · 24.1 KB
/
terms.html
File metadata and controls
543 lines (517 loc) · 24.1 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<!--
MIT License
Copyright (c) 2024-2026 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>Terms and User Agreement | JustStudio.</title>
<meta name="title" content="Terms and User Agreement | 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": "Terms and User Agreement",
"item": "https://juststudio.is-a.dev/terms"
}
]
}
</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/terms" />
<meta property="og:title" content="JustStudio." />
<meta property="og:description" content="a System Development Studio." />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta property="twitter:card" content="summary_large_image" />
<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>
<script type="text/javascript" src="https://juststudio.is-a.dev/js/navbar.js" defer></script>
<meta property="og:image" content="https://img.juststudio.is-a.dev/banner.png">
<meta name="theme-color" content="#6e3bf3">
</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/user-agreement.css" rel="stylesheet" />
<link href="./css/index.css" rel="stylesheet" />
<link
rel="stylesheet"
href="./css/menu.css"
/>
<div class="user-agreement-container">
<div class="user-agreement-bg">
<img
alt="image"
src="img/wavebar.svg"
loading="eager"
class="user-agreement-wave"
/>
<img
alt="image"
src="img/wavebar.svg"
loading="eager"
class="user-agreement-wave1"
/>
</div>
<div class="user-agreement-main">
<div class="user-agreement-info1">
<h1 class="user-agreement-name2 text-shadow">
<span class="txt29">User Agreement</span>
<br>
</h1>
<h1 class="user-agreement-desc2 text-shadow">
<span class="txt30">
Visiting and using our website, as well as games and any of our other products, projects, etc., means that you agree to this user agreement, as well as all the rules and other terms and conditions.</span>
</h1>
<h1 class="user-agreement-name3 text-shadow txt31">Terms of Use</h1>
<h1 class="user-agreement-desc3 text-shadow">
<span class="txt32">We may change these terms and all other terms and conditions without notifying anyone. Your continued use of the site, games, products, projects, etc. created by "JustStudio.", after changes to any terms or conditions or conditions, means your agreement to the changes. "JustStudio." is a studio that develops mainly assets on the Roblox platform, but has projects not related to Roblox. Our websites and projects and products, etc., are located only on these domains: juststudio.is-a.dev, just.is-a.dev, j.is-a.dev, <a href="#domains" class="stfl">see the full list</a> (games published on the Roblox platform do not relate to this in any way), all other domains do not belong to us, except for team domains (<a href="#tdomains" class="stfl">see the full list</a>) and partner domains (reavercommunity.dcms.site, kappy.is-a.dev, <a href="#pdomains" class="stfl">see the full list</a>). Partner domains, websites, as well as team domains and websites are supported by our servers and services, but we have no relation to, and are not responsible for, the content on partner websites and domains, as well as team domains and websites. "JustStudio." is in no way an affiliate or partner of Roblox Corporation, Microsoft Corporation, Google LLC, Discord Inc., Clerk Inc., Spline Inc. and GitHub Inc. We are not authorized, endorsed or sponsored by Roblox Corporation, Microsoft Corporation, Google LLC, Discord Inc., Clerk Inc., Spline Inc. and GitHub Inc. All Roblox trademarks remain the property of Roblox Corporation. All Microsoft trademarks remain the property of Microsoft Corporation. All Discord trademarks remain the property of Discord Inc. All GitHub trademarks remain the property of GitHub Inc. All Google trademarks remain the property of Google LLC. All Clerk trademarks remain the property of Clerk Inc. All Spline trademarks remain the property of Spline Inc.</span>
</h1>
<div class="user-agreement-info">
<h1 class="user-agreement-name text-shadow txt33">
Confidentiality and Security
</h1>
<h1 class="user-agreement-desc text-shadow">
<span class="txt34">We reserve the right to collect and store data about your account on the Roblox platform every time you visit our games or use our assets on the Roblox platform. We collect and store the following data about your account on the Roblox platform: UserID, UserName, UserDisplayName, Your role in our Roblox gruoup, AccountAge, <a class="stfl" href="#data">see the full list</a>, and your actions in our games. All the data about your account that we collect and store is provided by the Roblox platform, without using third-party resources. You can request the deletion of all your data on our servers and services on our <a href="https://discord.gg/aHXxS6VvcC" target="_blank"><span style="text-decoration: underline;">Discord server</span></a>. Keep in mind that after deleting your data, if you will use our assets again or visit our games again, we will collect and save your data again. No third parties receive your data. Data about you is collected and stored to simplify bug fixes, as well as to find users who violate our agreements or rules. Also, some data is collected and stored to personalize something (for example, interface settings in "JustStudio.AdminPanel").</span>
</h1>
<h1 class="user-agreement-name1 text-shadow txt35">
Purchase of paid content
</h1>
<h1 class="user-agreement-desc1 text-shadow">
<span class="txt36">Purchasing any paid content means that you agree to these terms. The purchase of paid content is not required, the purchase is made according to your desire, we do not force anyone to buy anything. After purchase, the paid content in the games is given to you automatically, no errors can occur. Paid roles in our <a href="https://discord.gg/aHXxS6VvcC" target="_blank"><span style="text-decoration: underline;">Discord server</span></a> are given to you manually, by the head administration. Funds for paid content will not be refunded.</span>
</h1>
<h1 class="user-agreement-name1 text-shadow txt37">Information</h1>
<h1 class="user-agreement-desc1 text-shadow">
<span class="txt38">Last Updated: December 26th, 2024
<br>
Version: 1.0.4</span>
</h1>
</div>
</div>
</div>
<div class="home-footer">
<div class="home-row-1">
<a href="/" class="home-navlink">
<div class="home-info1">
<img alt="image" src="img/logo-200h.png" class="home-logo" />
<h1 class="home-text text-shadow">
<span>JustStudio.</span>
<br />
</h1>
</div>
</a>
<span class="home-copyright">© JustStudio. 2024</span>
</div>
<div class="home-row-2">
<h1 class="home-heading text-shadow">
<span>Terms</span>
<br />
<br />
</h1>
<a href="terms" class="home-link-1">
<span>User Agreement</span>
<br />
</a>
<a href="rules" class="home-link-2">
<span>Rules For Players</span>
<br />
</a>
</div>
<div class="home-row-3">
<h1 class="home-heading1 text-shadow">
<span>Games</span>
<br />
<br />
</h1>
<span class="home-link-11">
<span>Coming soon.</span>
<br class="home-text14" />
</span>
<span class="home-link-21">
<span>Coming Soon...</span>
<br />
</span>
</div>
<div class="home-row-4">
<h1 class="home-heading2 text-shadow">
<span>Products</span>
<br />
</h1>
<span class="home-link-12">
<span>Coming soon.</span>
<br class="home-text20" />
</span>
<span class="home-link-22">
<span>Coming Soon...</span>
<br />
</span>
</div>
<div class="home-hitbox2">
<img
alt="image"
src="img/reaver.entertainment-300h.png"
class="home-arrow"
/>
<div class="home-hitbox-2"></div>
</div>
</div>
<div class="home-header">
<a href="/" class="home-navlink1">
<div class="home-row-11">
<div class="home-info2">
<img
alt="image"
src="img/logo-200h.png"
class="home-logo1"
/>
<h1 class="home-text23 text-shadow">
<span>DevTeam</span>
<br />
</h1>
</div>
</div>
</a>
<div class="home-row-21">
<h1 class="home-heading3 text-shadow">
<span>JustDeveloper</span>
<br />
</h1>
<a
href="https://www.roblox.com/users/1296091692/profile"
target="_blank"
rel="noreferrer noopener"
class="home-link-13"
>
<span>Roblox Profile</span>
<br />
</a>
<a
href="https://justdeveloper.is-a.dev/"
target="_blank"
rel="noreferrer noopener"
class="home-link-23"
>
<span>Website</span>
<br />
</a>
</div>
<div class="home-row-31">
<h1 class="home-heading4 text-shadow">
<span>yruowr</span>
<br />
<br />
<br />
</h1>
<a
href="https://www.roblox.com/users/1473133132/profile"
target="_blank"
rel="noreferrer noopener"
class="home-link-14"
>
<span>Roblox Profile</span>
<br />
</a>
<span class="home-link-24">
<span>Coming Soon...</span>
<br />
</span>
</div>
<div class="home-row-41">
<h1 class="home-heading5 text-shadow">
<span>GarikHappy</span>
<br />
</h1>
<a
href="https://www.roblox.com/users/2214857326/profile"
target="_blank"
rel="noreferrer noopener"
class="home-link-15"
>
<span>Roblox Profile</span>
<br />
</a>
<span class="home-link-25">
<span>Coming Soon...</span>
<br />
</span>
</div>
<div class="home-hitbox3">
<img
alt="image"
src="img/reaver.entertainment-300h.png"
class="home-arrow1"
/>
<div class="home-hitbox-21"></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 id="domains" class="pop-up"><a href="#">x</a><a href="#tdomains" class="pu-n txt39">next</a><span class="txt41">Domains owned by "JustStudio."<span>juststudio7.github.io, juststudio.is-a.dev, api.juststudio.is-a.dev, img.juststudio.is-a.dev, just.is-a.dev, 77.is-a.dev, j.is-a.dev, juststudio.part-of.my.id, just.part-of.my.id, js.part-of.my.id, j.part-of.my.id</span></span></div>
<div id="tdomains" class="pop-up"><a href="#">x</a><a href="#pdomains" class="pu-n txt39">next</a><span class="txt42">Team domains owned by "JustStudio."<span>justdeveloper.is-a.dev, justdev.is-a.dev, jd.is-a.dev, justdeveloper.part-of.my.id, justdev.part-of.my.id, jd.part-of.my.id</span></span></div>
<div id="pdomains" class="pop-up"><a href="#">x</a><a href="#domains" class="pu-n txt40">back</a><span class="txt43">Partner domains owned by "JustStudio."<span>reavercommunity.dcms.site, kappy.is-a.dev</span></span></div>
<div id="data" class="pop-up"><a href="#">x</a><a href="#" class="pu-n txt40" style="display: none;">back</a><span class="txt44">Data we collect about your Roblox account<span>UserID, User Name (example: @JustDeveloper7), Display Name (example: JustDeveloper), Your role in our Roblox Group (example: Member), Account Age (example: 4 years, 11 months, and 2 days.), Membership Type (For Regular Users - None, For Users with a Roblox Premium Subscription - Premium, <a href="https://create.roblox.com/docs/reference/engine/enums/MembershipType" target="_blank" rel="noreferrer noopener" class="no-pu-n">learn more</a>), Friends Count, Online Friends Count, Following Count, Follower Count, Group Joined Count, Owned Groups Count, Clan Joined Count, Total Ally Group Count & Total Enemy Group Count (for groups that you own), Total Member Count for your owned public groups, Device Type, HasVerifiedBadge, ID of player you joined the game with, Language & Country settings in your account, Ping & FPS, Gamepass purchases & Robux spent in our game, and any your actions in our games</span></span></div>
<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>
<script defer>
window.onload = function() {
if (window.location.href.includes('navbar=false')) {
var headerElement = document.querySelector('.header');
var notificsElementt = document.getElementById('notifications');
if (headerElement) {
headerElement.remove();
}
if (notificsElementt) {
notificsElementt.remove();
}
}
};
</script>
</body>
</html>