-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorionlibraryrecode
More file actions
2276 lines (2189 loc) · 102 KB
/
orionlibraryrecode
File metadata and controls
2276 lines (2189 loc) · 102 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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--! Orion Library
--! Recode@2024.1.5
--! Author: ttwiz_z (ttwizz)
--! License: MIT
--! GitHub: https://github.com/ttwizz/Roblox/blob/master/Orion.lua
--! Issues: https://github.com/ttwizz/Roblox/issues
--! Pull requests: https://github.com/ttwizz/Roblox/pulls
--! Discussions: https://github.com/ttwizz/Roblox/discussions
--! twix.cyou/pix
--? Source Code
local L_1_ = game:GetService("ScriptContext")
local L_2_ = game:GetService("UserInputService")
local L_3_ = game:GetService("TweenService")
local L_4_ = game:GetService("RunService")
local L_5_ = game:GetService("Players").LocalPlayer
local L_6_ = L_5_:GetMouse()
local L_7_ = game:GetService("HttpService")
local L_8_ = game:GetService("CoreGui")
local L_9_ = game:GetService("Debris")
if getfenv().getconnections then
for _, L_33_forvar2 in next, getfenv().getconnections(L_1_.Error) do
L_33_forvar2:Disable()
end
end
local L_10_ = {
Elements = {},
ThemeObjects = {},
Connections = {},
Flags = {},
Themes = {
Default = {
Main = Color3.fromRGB(25, 25, 25),
Second = Color3.fromRGB(32, 32, 32),
Stroke = Color3.fromRGB(60, 60, 60),
Divider = Color3.fromRGB(60, 60, 60),
Text = Color3.fromRGB(240, 240, 240),
TextDark = Color3.fromRGB(150, 150, 150)
}
},
SelectedTheme = "Default",
SaveCfg = false
}
local L_11_ = [[
{
"icons": {
"aperture": "rbxassetid://7733666258",
"bug": "rbxassetid://7733701545",
"chevrons-down-up": "rbxassetid://7733720483",
"clock-6": "rbxassetid://8997384977",
"egg": "rbxassetid://8997385940",
"external-link": "rbxassetid://7743866903",
"lightbulb-off": "rbxassetid://7733975123",
"file-check-2": "rbxassetid://7733779610",
"settings": "rbxassetid://7734053495",
"crown": "rbxassetid://7733765398",
"coins": "rbxassetid://7743866529",
"battery": "rbxassetid://7733674820",
"flashlight-off": "rbxassetid://7733798799",
"camera-off": "rbxassetid://7733919260",
"function-square": "rbxassetid://7733799682",
"mountain-snow": "rbxassetid://7743870286",
"gamepad": "rbxassetid://7733799901",
"gift": "rbxassetid://7733946818",
"globe": "rbxassetid://7733954760",
"option": "rbxassetid://7734021300",
"hand": "rbxassetid://7733955740",
"hard-hat": "rbxassetid://7733955850",
"hash": "rbxassetid://7733955906",
"server": "rbxassetid://7734053426",
"align-horizontal-space-around": "rbxassetid://8997381738",
"highlighter": "rbxassetid://7743868648",
"bike": "rbxassetid://7733678330",
"home": "rbxassetid://7733960981",
"image": "rbxassetid://7733964126",
"indent": "rbxassetid://7733964452",
"infinity": "rbxassetid://7733964640",
"inspect": "rbxassetid://7733964808",
"alert-triangle": "rbxassetid://7733658504",
"align-start-horizontal": "rbxassetid://8997381965",
"figma": "rbxassetid://7743867310",
"pin": "rbxassetid://8997386648",
"corner-up-right": "rbxassetid://7733764915",
"list-x": "rbxassetid://7743869517",
"monitor-off": "rbxassetid://7734000184",
"chevron-first": "rbxassetid://8997383275",
"package-search": "rbxassetid://8997386448",
"pencil": "rbxassetid://7734022107",
"cloud-fog": "rbxassetid://7733920317",
"grip-horizontal": "rbxassetid://7733955302",
"align-center-vertical": "rbxassetid://8997380737",
"outdent": "rbxassetid://7734021384",
"more-vertical": "rbxassetid://7734006187",
"package-plus": "rbxassetid://8997386355",
"bluetooth": "rbxassetid://7733687147",
"pen-tool": "rbxassetid://7734022041",
"person-standing": "rbxassetid://7743871002",
"tornado": "rbxassetid://7743873633",
"phone-incoming": "rbxassetid://7743871120",
"phone-off": "rbxassetid://7734029534",
"dribbble": "rbxassetid://7733770843",
"at-sign": "rbxassetid://7733673907",
"edit-2": "rbxassetid://7733771217",
"sheet": "rbxassetid://7743871876",
"tv": "rbxassetid://7743874674",
"headphones": "rbxassetid://7733956063",
"qr-code": "rbxassetid://7743871575",
"reply": "rbxassetid://7734051594",
"rewind": "rbxassetid://7734051670",
"bell-off": "rbxassetid://7733675107",
"file-check": "rbxassetid://7733779668",
"quote": "rbxassetid://7734045100",
"rotate-ccw": "rbxassetid://7734051861",
"library": "rbxassetid://7743869054",
"clock-1": "rbxassetid://8997383694",
"on-charge": "rbxassetid://7734021231",
"video-off": "rbxassetid://7743876466",
"save": "rbxassetid://7734052335",
"arrow-left-circle": "rbxassetid://7733673056",
"screen-share": "rbxassetid://7734052814",
"clock-3": "rbxassetid://8997384456",
"help-circle": "rbxassetid://7733956210",
"server-crash": "rbxassetid://7734053281",
"bluetooth-searching": "rbxassetid://7733914320",
"equal": "rbxassetid://7733771811",
"shield-close": "rbxassetid://7734056470",
"phone": "rbxassetid://7734032056",
"type": "rbxassetid://7743874740",
"file-x-2": "rbxassetid://7743867554",
"sidebar": "rbxassetid://7734058260",
"sigma": "rbxassetid://7734058345",
"smartphone-charging": "rbxassetid://7734058894",
"arrow-left": "rbxassetid://7733673136",
"framer": "rbxassetid://7733799486",
"currency": "rbxassetid://7733765592",
"star": "rbxassetid://7734068321",
"stretch-horizontal": "rbxassetid://8997387754",
"smile": "rbxassetid://7734059095",
"subscript": "rbxassetid://8997387937",
"sun": "rbxassetid://7734068495",
"switch-camera": "rbxassetid://7743872492",
"table": "rbxassetid://7734073253",
"tag": "rbxassetid://7734075797",
"cross": "rbxassetid://7733765224",
"gem": "rbxassetid://7733942651",
"link": "rbxassetid://7733978098",
"terminal": "rbxassetid://7743872929",
"thermometer-sun": "rbxassetid://7734084018",
"share-2": "rbxassetid://7734053595",
"timer-off": "rbxassetid://8997388325",
"megaphone": "rbxassetid://7733993049",
"timer-reset": "rbxassetid://7743873336",
"phone-forwarded": "rbxassetid://7734027345",
"unlock": "rbxassetid://7743875263",
"trello": "rbxassetid://7743873996",
"camera": "rbxassetid://7733708692",
"triangle": "rbxassetid://7743874367",
"truck": "rbxassetid://7743874482",
"file-output": "rbxassetid://7733788742",
"gamepad-2": "rbxassetid://7733799795",
"network": "rbxassetid://7734021047",
"users": "rbxassetid://7743876054",
"electricity-off": "rbxassetid://7733771563",
"book": "rbxassetid://7733914390",
"clock-9": "rbxassetid://8997385485",
"corner-down-left": "rbxassetid://7733764327",
"locate-fixed": "rbxassetid://7733992424",
"bar-chart": "rbxassetid://7733674319",
"shield-check": "rbxassetid://7734056411",
"signal-low": "rbxassetid://8997387189",
"reply-all": "rbxassetid://7734051524",
"zoom-in": "rbxassetid://7743878977",
"grip-vertical": "rbxassetid://7733955410",
"ticket": "rbxassetid://7734086558",
"smartphone": "rbxassetid://7734058979",
"arrow-big-right": "rbxassetid://7733671493",
"tv-2": "rbxassetid://7743874599",
"flashlight": "rbxassetid://7733798851",
"database": "rbxassetid://7743866778",
"plus-square": "rbxassetid://7734040369",
"align-justify": "rbxassetid://7733661326",
"clipboard-list": "rbxassetid://7733920117",
"github": "rbxassetid://7733954058",
"columns": "rbxassetid://7733757178",
"arrow-big-down": "rbxassetid://7733668653",
"cloud-off": "rbxassetid://7733745572",
"target": "rbxassetid://7743872758",
"skip-back": "rbxassetid://7734058404",
"x-circle": "rbxassetid://7743878496",
"clock-10": "rbxassetid://8997383876",
"align-right": "rbxassetid://7733663582",
"clock-5": "rbxassetid://8997384798",
"bell-plus": "rbxassetid://7733675181",
"battery-medium": "rbxassetid://7733674731",
"arrow-down": "rbxassetid://7733672933",
"inbox": "rbxassetid://7733964370",
"cast": "rbxassetid://7733919326",
"gift-card": "rbxassetid://7733945018",
"webcam": "rbxassetid://7743877896",
"folder-minus": "rbxassetid://7733799022",
"scan-line": "rbxassetid://8997386772",
"shovel": "rbxassetid://7734056878",
"download-cloud": "rbxassetid://7733770689",
"list-checks": "rbxassetid://7743869317",
"file-text": "rbxassetid://7733789088",
"codesandbox": "rbxassetid://7733752575",
"laptop-2": "rbxassetid://7733965313",
"podcast": "rbxassetid://7734042234",
"log-out": "rbxassetid://7733992677",
"thumbs-up": "rbxassetid://7743873212",
"timer": "rbxassetid://7743873443",
"text-cursor": "rbxassetid://8997388195",
"file-search": "rbxassetid://7733788966",
"thermometer": "rbxassetid://7734084149",
"bluetooth-off": "rbxassetid://7733914252",
"refresh-cw": "rbxassetid://7734051052",
"clipboard-check": "rbxassetid://7733919947",
"languages": "rbxassetid://7733965249",
"asterisk": "rbxassetid://7733673800",
"superscript": "rbxassetid://8997388036",
"user-check": "rbxassetid://7743875503",
"move-diagonal": "rbxassetid://7743870505",
"copy": "rbxassetid://7733764083",
"bot": "rbxassetid://7733916988",
"alarm-minus": "rbxassetid://7733656164",
"log-in": "rbxassetid://7733992604",
"maximize": "rbxassetid://7733992982",
"align-horizontal-space-between": "rbxassetid://8997381854",
"brush": "rbxassetid://7733701455",
"equal-not": "rbxassetid://7733771726",
"upload": "rbxassetid://7743875428",
"minus-circle": "rbxassetid://7733998053",
"graduation-cap": "rbxassetid://7733955058",
"edit-3": "rbxassetid://7733771361",
"check": "rbxassetid://7733715400",
"scissors": "rbxassetid://7734052570",
"info": "rbxassetid://7733964719",
"align-horizonal-distribute-start": "rbxassetid://8997381290",
"book-open": "rbxassetid://7733687281",
"divide-circle": "rbxassetid://7733769152",
"file": "rbxassetid://7733793319",
"clock-2": "rbxassetid://8997384295",
"corner-right-up": "rbxassetid://7733764680",
"clover": "rbxassetid://7733747233",
"expand": "rbxassetid://7733771982",
"gauge": "rbxassetid://7733799969",
"phone-outgoing": "rbxassetid://7743871253",
"shield-alert": "rbxassetid://7734056326",
"paperclip": "rbxassetid://7734021680",
"arrow-big-left": "rbxassetid://7733911731",
"album": "rbxassetid://7733658133",
"bookmark": "rbxassetid://7733692043",
"check-circle-2": "rbxassetid://7733710700",
"list-ordered": "rbxassetid://7743869411",
"delete": "rbxassetid://7733768142",
"axe": "rbxassetid://7733674079",
"radio": "rbxassetid://7743871662",
"octagon": "rbxassetid://7734021165",
"git-commit": "rbxassetid://7743868360",
"shirt": "rbxassetid://7734056672",
"corner-right-down": "rbxassetid://7733764605",
"trending-down": "rbxassetid://7743874143",
"airplay": "rbxassetid://7733655834",
"repeat": "rbxassetid://7734051454",
"layers": "rbxassetid://7743868936",
"chevron-right": "rbxassetid://7733717755",
"chevrons-right": "rbxassetid://7733919682",
"folder-plus": "rbxassetid://7733799092",
"alarm-check": "rbxassetid://7733655912",
"arrow-up-right": "rbxassetid://7733673646",
"user-plus": "rbxassetid://7743875759",
"file-minus": "rbxassetid://7733936115",
"cloud-drizzle": "rbxassetid://7733920226",
"stretch-vertical": "rbxassetid://8997387862",
"align-vertical-distribute-start": "rbxassetid://8997382428",
"unlink": "rbxassetid://7743875149",
"wand": "rbxassetid://8997388430",
"regex": "rbxassetid://7734051188",
"command": "rbxassetid://7733924046",
"haze": "rbxassetid://7733955969",
"trash": "rbxassetid://7743873871",
"battery-full": "rbxassetid://7733674503",
"flag-triangle-left": "rbxassetid://7733798509",
"server-off": "rbxassetid://7734053361",
"loader-2": "rbxassetid://7733989869",
"monitor-speaker": "rbxassetid://7743869988",
"shuffle": "rbxassetid://7734057059",
"tablet": "rbxassetid://7743872620",
"cloud-moon": "rbxassetid://7733920519",
"clipboard-x": "rbxassetid://7733734668",
"pocket": "rbxassetid://7734042139",
"watch": "rbxassetid://7743877668",
"file-plus": "rbxassetid://7733788885",
"locate": "rbxassetid://7733992469",
"share": "rbxassetid://7734053697",
"thermometer-snowflake": "rbxassetid://7743873074",
"volume-1": "rbxassetid://7743877081",
"arrow-left-right": "rbxassetid://8997382869",
"coffee": "rbxassetid://7733752630",
"chevron-last": "rbxassetid://8997383390",
"cloud-hail": "rbxassetid://7733920444",
"alarm-clock-off": "rbxassetid://7733656003",
"pound-sterling": "rbxassetid://7734042354",
"tent": "rbxassetid://7734078943",
"toggle-left": "rbxassetid://7734091286",
"dollar-sign": "rbxassetid://7733770599",
"sunrise": "rbxassetid://7743872365",
"sunset": "rbxassetid://7734070982",
"code": "rbxassetid://7733749837",
"thumbs-down": "rbxassetid://7734084236",
"trending-up": "rbxassetid://7743874262",
"clock-12": "rbxassetid://8997384150",
"rocking-chair": "rbxassetid://7734051769",
"check-square": "rbxassetid://7733919526",
"cpu": "rbxassetid://7733765045",
"palette": "rbxassetid://7734021595",
"minimize-2": "rbxassetid://7733997870",
"cloud-sun": "rbxassetid://7733746880",
"copyleft": "rbxassetid://7733764196",
"archive": "rbxassetid://7733911621",
"building": "rbxassetid://7733701625",
"image-minus": "rbxassetid://7733963797",
"italic": "rbxassetid://7733964917",
"link-2-off": "rbxassetid://7733975283",
"sort-asc": "rbxassetid://7734060715",
"underline": "rbxassetid://7743874904",
"gitlab": "rbxassetid://7733954246",
"file-minus-2": "rbxassetid://7733936010",
"play-circle": "rbxassetid://7734037784",
"clock-8": "rbxassetid://8997385352",
"file-input": "rbxassetid://7733935917",
"beaker": "rbxassetid://7733674922",
"shopping-bag": "rbxassetid://7734056747",
"navigation": "rbxassetid://7734020989",
"moon": "rbxassetid://7743870134",
"align-vertical-space-between": "rbxassetid://8997382793",
"glasses": "rbxassetid://7733954403",
"clipboard-copy": "rbxassetid://7733920037",
"feather": "rbxassetid://7733777166",
"skip-forward": "rbxassetid://7734058495",
"wind": "rbxassetid://7743878264",
"frown": "rbxassetid://7733799591",
"move-vertical": "rbxassetid://7743870608",
"umbrella": "rbxassetid://7743874820",
"package": "rbxassetid://7734021469",
"chevrons-up": "rbxassetid://7733723433",
"download": "rbxassetid://7733770755",
"eye": "rbxassetid://7733774602",
"files": "rbxassetid://7743867811",
"arrow-down-right": "rbxassetid://7733672831",
"code-2": "rbxassetid://7733920644",
"wrap-text": "rbxassetid://8997388548",
"file-digit": "rbxassetid://7733935829",
"x-square": "rbxassetid://7743878737",
"clipboard": "rbxassetid://7733734762",
"maximize-2": "rbxassetid://7733992901",
"send": "rbxassetid://7734053039",
"alarm-clock": "rbxassetid://7733656100",
"sliders": "rbxassetid://7734058803",
"refresh-ccw": "rbxassetid://7734050715",
"music": "rbxassetid://7734020554",
"banknote": "rbxassetid://7733674153",
"hard-drive": "rbxassetid://7733955793",
"search": "rbxassetid://7734052925",
"layout-list": "rbxassetid://7733970442",
"edit": "rbxassetid://7733771472",
"contrast": "rbxassetid://7733764005",
"wifi": "rbxassetid://7743878148",
"swiss-franc": "rbxassetid://7734071038",
"ghost": "rbxassetid://7743868000",
"laptop": "rbxassetid://7733965386",
"clock-4": "rbxassetid://8997384603",
"layout-dashboard": "rbxassetid://7733970318",
"align-vertical-justify-end": "rbxassetid://8997382584",
"circle": "rbxassetid://7733919881",
"file-x": "rbxassetid://7733938136",
"award": "rbxassetid://7733673987",
"corner-left-down": "rbxassetid://7733764448",
"arrow-up-left": "rbxassetid://7733673539",
"carrot": "rbxassetid://8997382987",
"globe-2": "rbxassetid://7733954611",
"compass": "rbxassetid://7733924216",
"git-branch": "rbxassetid://7733949149",
"vibrate": "rbxassetid://7743876302",
"pause-circle": "rbxassetid://7734021767",
"minus-square": "rbxassetid://7743869899",
"mic-off": "rbxassetid://7743869714",
"arrow-down-circle": "rbxassetid://7733671763",
"move-horizontal": "rbxassetid://7734016210",
"chrome": "rbxassetid://7733919783",
"radio-receiver": "rbxassetid://7734045155",
"shield": "rbxassetid://7734056608",
"image-plus": "rbxassetid://7733964016",
"more-horizontal": "rbxassetid://7734006080",
"slash": "rbxassetid://8997387644",
"divide": "rbxassetid://7733769365",
"view": "rbxassetid://7743876754",
"list": "rbxassetid://7743869612",
"printer": "rbxassetid://7734042580",
"corner-left-up": "rbxassetid://7733764536",
"meh": "rbxassetid://7733993147",
"copyright": "rbxassetid://7733764275",
"align-end-vertical": "rbxassetid://8997380907",
"heart": "rbxassetid://7733956134",
"lock": "rbxassetid://7733992528",
"align-center": "rbxassetid://7733909776",
"signal-high": "rbxassetid://8997387110",
"upload-cloud": "rbxassetid://7743875358",
"arrow-up-circle": "rbxassetid://7733673466",
"git-branch-plus": "rbxassetid://7743868200",
"align-vertical-justify-center": "rbxassetid://8997382502",
"screen-share-off": "rbxassetid://7734052653",
"git-pull-request": "rbxassetid://7733952287",
"flag": "rbxassetid://7733798691",
"star-half": "rbxassetid://7734068258",
"minus": "rbxassetid://7734000129",
"mountain": "rbxassetid://7734008868",
"volume": "rbxassetid://7743877487",
"mouse-pointer-2": "rbxassetid://7734010405",
"package-x": "rbxassetid://8997386545",
"indian-rupee": "rbxassetid://7733964536",
"speaker": "rbxassetid://7734063416",
"flame": "rbxassetid://7733798747",
"circle-slashed": "rbxassetid://8997383530",
"crop": "rbxassetid://7733765140",
"clock-11": "rbxassetid://8997384034",
"stop-circle": "rbxassetid://7734068379",
"align-horizontal-justify-end": "rbxassetid://8997381549",
"power-off": "rbxassetid://7734042423",
"bell-minus": "rbxassetid://7733675028",
"undo": "rbxassetid://7743874974",
"link-2": "rbxassetid://7743869163",
"lightbulb": "rbxassetid://7733975185",
"shrink": "rbxassetid://7734056971",
"mail": "rbxassetid://7733992732",
"pause": "rbxassetid://7734021897",
"bold": "rbxassetid://7733687211",
"calendar": "rbxassetid://7733919198",
"x-octagon": "rbxassetid://7743878618",
"russian-ruble": "rbxassetid://7734052248",
"file-code": "rbxassetid://7733779730",
"life-buoy": "rbxassetid://7733973479",
"import": "rbxassetid://7733964240",
"video": "rbxassetid://7743876610",
"clock-7": "rbxassetid://8997385147",
"align-center-horizontal": "rbxassetid://8997380477",
"bell": "rbxassetid://7733911828",
"move-diagonal-2": "rbxassetid://7734013178",
"message-circle": "rbxassetid://7733993311",
"skull": "rbxassetid://7734058599",
"battery-charging": "rbxassetid://7733674402",
"ruler": "rbxassetid://7734052157",
"binary": "rbxassetid://7733678388",
"cloud-rain-wind": "rbxassetid://7733746456",
"briefcase": "rbxassetid://7733919017",
"terminal-square": "rbxassetid://7734079055",
"scale": "rbxassetid://7734052454",
"lasso": "rbxassetid://7733967892",
"piggy-bank": "rbxassetid://7734034513",
"battery-low": "rbxassetid://7733674589",
"arrow-up": "rbxassetid://7733673717",
"list-plus": "rbxassetid://7733984995",
"bookmark-plus": "rbxassetid://7734111084",
"box-select": "rbxassetid://7733696665",
"filter": "rbxassetid://7733798407",
"play": "rbxassetid://7743871480",
"align-vertical-space-around": "rbxassetid://8997382708",
"calculator": "rbxassetid://7733919105",
"bell-ring": "rbxassetid://7733675275",
"plane": "rbxassetid://7734037723",
"plus-circle": "rbxassetid://7734040271",
"power": "rbxassetid://7734042493",
"phone-missed": "rbxassetid://7734029465",
"percent": "rbxassetid://7743870852",
"jersey-pound": "rbxassetid://7733965029",
"mouse-pointer": "rbxassetid://7743870392",
"box": "rbxassetid://7733917120",
"separator-vertical": "rbxassetid://7734053213",
"snowflake": "rbxassetid://7734059180",
"sort-desc": "rbxassetid://7743871973",
"flag-triangle-right": "rbxassetid://7733798634",
"bar-chart-2": "rbxassetid://7733674239",
"hand-metal": "rbxassetid://7733955664",
"map": "rbxassetid://7733992829",
"eye-off": "rbxassetid://7733774495",
"align-end-horizontal": "rbxassetid://8997380820",
"cloud-rain": "rbxassetid://7733746651",
"contact": "rbxassetid://7743866666",
"signal": "rbxassetid://8997387546",
"mouse-pointer-click": "rbxassetid://7734010488",
"settings-2": "rbxassetid://8997386997",
"sidebar-open": "rbxassetid://7734058165",
"unlink-2": "rbxassetid://7743875069",
"pause-octagon": "rbxassetid://7734021827",
"user-minus": "rbxassetid://7743875629",
"cloud": "rbxassetid://7733746980",
"arrow-right-circle": "rbxassetid://7733673229",
"align-horizonal-distribute-center": "rbxassetid://8997381028",
"fast-forward": "rbxassetid://7743867090",
"volume-2": "rbxassetid://7743877250",
"grab": "rbxassetid://7733954884",
"arrow-right": "rbxassetid://7733673345",
"chevron-down": "rbxassetid://7733717447",
"volume-x": "rbxassetid://7743877381",
"cloud-snow": "rbxassetid://7733746798",
"car": "rbxassetid://7733708835",
"bluetooth-connected": "rbxassetid://7734110952",
"CD": "rbxassetid://7734110220",
"cookie": "rbxassetid://8997385628",
"message-square": "rbxassetid://7733993369",
"repeat-1": "rbxassetid://7734051342",
"codepen": "rbxassetid://7733920768",
"voicemail": "rbxassetid://7743876916",
"text-cursor-input": "rbxassetid://8997388094",
"package-check": "rbxassetid://8997386143",
"shopping-cart": "rbxassetid://7734056813",
"corner-down-right": "rbxassetid://7733764385",
"folder-open": "rbxassetid://8997386062",
"charge": "rbxassetid://8997383136",
"layout-grid": "rbxassetid://7733970390",
"clock": "rbxassetid://7733734848",
"corner-up-left": "rbxassetid://7733764800",
"align-horizontal-justify-start": "rbxassetid://8997381652",
"git-merge": "rbxassetid://7733952195",
"verified": "rbxassetid://7743876142",
"redo": "rbxassetid://7743871739",
"hexagon": "rbxassetid://7743868527",
"square": "rbxassetid://7743872181",
"align-horizontal-justify-center": "rbxassetid://8997381461",
"chevrons-up-down": "rbxassetid://7733723321",
"bus": "rbxassetid://7733701715",
"file-plus-2": "rbxassetid://7733788816",
"alarm-plus": "rbxassetid://7733658066",
"divide-square": "rbxassetid://7733769261",
"pie-chart": "rbxassetid://7734034378",
"signal-zero": "rbxassetid://8997387434",
"hammer": "rbxassetid://7733955511",
"history": "rbxassetid://7733960880",
"align-vertical-justify-start": "rbxassetid://8997382639",
"flask-round": "rbxassetid://7733798957",
"wifi-off": "rbxassetid://7743878056",
"zoom-out": "rbxassetid://7743879082",
"toggle-right": "rbxassetid://7743873539",
"monitor": "rbxassetid://7734002839",
"x": "rbxassetid://7743878857",
"align-horizonal-distribute-end": "rbxassetid://8997381144",
"user": "rbxassetid://7743875962",
"sprout": "rbxassetid://7743872071",
"move": "rbxassetid://7743870731",
"gavel": "rbxassetid://7733800044",
"package-minus": "rbxassetid://8997386266",
"drumstick": "rbxassetid://8997385789",
"forward": "rbxassetid://7733799371",
"sidebar-close": "rbxassetid://7734058092",
"electricity": "rbxassetid://7733771628",
"plus": "rbxassetid://7734042071",
"pipette": "rbxassetid://7743871384",
"cloud-lightning": "rbxassetid://7733741741",
"lasso-select": "rbxassetid://7743868832",
"phone-call": "rbxassetid://7734027264",
"droplet": "rbxassetid://7733770982",
"key": "rbxassetid://7733965118",
"map-pin": "rbxassetid://7733992789",
"navigation-2": "rbxassetid://7734020942",
"list-minus": "rbxassetid://7733980795",
"chevron-up": "rbxassetid://7733919605",
"layout-template": "rbxassetid://7733970494",
"no_entry": "rbxassetid://7734021118",
"scan": "rbxassetid://8997386861",
"arrow-big-up": "rbxassetid://7733671663",
"bookmark-minus": "rbxassetid://7733689754",
"activity": "rbxassetid://7733655755",
"grid": "rbxassetid://7733955179",
"user-x": "rbxassetid://7743875879",
"alert-circle": "rbxassetid://7733658271",
"menu": "rbxassetid://7733993211",
"form-input": "rbxassetid://7733799275",
"rss": "rbxassetid://7734052075",
"loader": "rbxassetid://7733992358",
"align-vertical-distribute-end": "rbxassetid://8997382326",
"strikethrough": "rbxassetid://7734068425",
"mic": "rbxassetid://7743869805",
"landmark": "rbxassetid://7733965184",
"crosshair": "rbxassetid://7733765307",
"alert-octagon": "rbxassetid://7733658335",
"anchor": "rbxassetid://7733911490",
"separator-horizontal": "rbxassetid://7734053146",
"chevron-left": "rbxassetid://7733717651",
"flask-conical": "rbxassetid://7733798901",
"wallet": "rbxassetid://7743877573",
"euro": "rbxassetid://7733771891",
"trash-2": "rbxassetid://7743873772",
"check-circle": "rbxassetid://7733919427",
"layout": "rbxassetid://7733970543",
"droplets": "rbxassetid://7733771078",
"align-start-vertical": "rbxassetid://8997382085",
"rotate-cw": "rbxassetid://7734051957",
"minimize": "rbxassetid://7733997941",
"arrow-down-left": "rbxassetid://7733672282",
"signal-medium": "rbxassetid://8997387319",
"align-vertical-distribute-center": "rbxassetid://8997382212",
"image-off": "rbxassetid://7733963907",
"cloudy": "rbxassetid://7733747106",
"align-left": "rbxassetid://7733911357",
"film": "rbxassetid://7733942579",
"chevrons-down": "rbxassetid://7733720604",
"pointer": "rbxassetid://7734042307",
"folder": "rbxassetid://7733799185",
"chevrons-left": "rbxassetid://7733720701",
"shield-off": "rbxassetid://7734056540",
"wrench": "rbxassetid://7743878358"
}
}
]]
local L_12_ = Instance.new("ScreenGui")
L_12_.Name = string.lower(string.reverse(string.sub(L_7_:GenerateGUID(false), 1, 8)))
if getfenv().syn then
getfenv().syn.protect_gui(L_12_)
L_12_.Parent = L_8_
else
xpcall(function()
L_12_.Parent = getfenv().gethui and getfenv().gethui() or L_8_
end, function()
L_12_.DisplayOrder = 9e8
L_12_.ResetOnSpawn = false
L_12_.Parent = L_5_:WaitForChild("PlayerGui", math.huge)
end)
end
local L_13_ = L_12_.Parent
function L_10_:IsRunning()
return L_12_.Parent == L_13_
end
local function L_14_func(L_34_arg1, L_35_arg2)
if not L_10_:IsRunning() then
return
end
local L_36_ = L_34_arg1:Connect(L_35_arg2)
table.insert(L_10_.Connections, L_36_)
return L_36_
end
task.spawn(function()
while L_10_:IsRunning() do
task.wait()
end
for _, L_38_forvar2 in next, L_10_.Connections do
L_38_forvar2:Disconnect()
end
end)
local function L_15_func(L_39_arg1, L_40_arg2)
pcall(function()
local L_41_, L_42_, L_43_, L_44_ = false, nil
L_14_func(L_39_arg1.InputBegan, function(L_45_arg1)
if L_45_arg1.UserInputType == Enum.UserInputType.MouseButton1 or L_45_arg1.UserInputType == Enum.UserInputType.Touch then
L_41_ = true
L_43_ = L_45_arg1.Position
L_44_ = L_40_arg2.Position
L_45_arg1.Changed:Connect(function()
if L_45_arg1.UserInputState == Enum.UserInputState.End then
L_41_ = false
end
end)
end
end)
L_14_func(L_39_arg1.InputChanged, function(L_46_arg1)
if L_46_arg1.UserInputType == Enum.UserInputType.MouseMovement or L_46_arg1.UserInputType == Enum.UserInputType.Touch then
L_42_ = L_46_arg1
end
end)
L_14_func(L_2_.InputChanged, function(L_47_arg1)
if L_47_arg1 == L_42_ and L_41_ then
local L_48_ = L_47_arg1.Position - L_43_
L_40_arg2.Position = UDim2.new(L_44_.X.Scale, L_44_.X.Offset + L_48_.X, L_44_.Y.Scale, L_44_.Y.Offset + L_48_.Y)
end
end)
end)
end
local function L_16_func(L_49_arg1, L_50_arg2, L_51_arg3)
local L_52_ = Instance.new(L_49_arg1)
for L_53_forvar1, L_54_forvar2 in next, L_50_arg2 or {} do
L_52_[L_53_forvar1] = L_54_forvar2
end
for _, L_56_forvar2 in next, L_51_arg3 or {} do
L_56_forvar2.Parent = L_52_
end
return L_52_
end
local function L_17_func(L_57_arg1, L_58_arg2)
L_10_.Elements[L_57_arg1] = function(...)
return L_58_arg2(...)
end
end
local function L_18_func(L_59_arg1, ...)
return L_10_.Elements[L_59_arg1](...)
end
local function L_19_func(L_60_arg1, L_61_arg2)
for L_62_forvar1, L_63_forvar2 in next, L_61_arg2 do
L_60_arg1[L_62_forvar1] = L_63_forvar2
end
return L_60_arg1
end
local function L_20_func(L_64_arg1, L_65_arg2)
for _, L_67_forvar2 in next, L_65_arg2 do
L_67_forvar2.Parent = L_64_arg1
end
return L_64_arg1
end
local function L_21_func(L_68_arg1, L_69_arg2)
local L_70_ = math.floor(L_68_arg1 / L_69_arg2 + math.sign(L_68_arg1) * 0.5) * L_69_arg2
if L_70_ < 0 then
L_70_ = L_70_ + L_69_arg2
end
return L_70_
end
local function L_22_func(L_71_arg1)
if L_71_arg1:IsA("Frame") or L_71_arg1:IsA("TextButton") then
return "BackgroundColor3"
elseif L_71_arg1:IsA("ScrollingFrame") then
return "ScrollBarImageColor3"
elseif L_71_arg1:IsA("UIStroke") then
return "Color"
elseif L_71_arg1:IsA("TextLabel") or L_71_arg1:IsA("TextBox") then
return "TextColor3"
elseif L_71_arg1:IsA("ImageLabel") or L_71_arg1:IsA("ImageButton") then
return "ImageColor3"
end
end
local function L_23_func(L_72_arg1, L_73_arg2)
if not L_10_.ThemeObjects[L_73_arg2] then
L_10_.ThemeObjects[L_73_arg2] = {}
end
table.insert(L_10_.ThemeObjects[L_73_arg2], L_72_arg1)
L_72_arg1[L_22_func(L_72_arg1)] = L_10_.Themes[L_10_.SelectedTheme][L_73_arg2]
return L_72_arg1
end
local function L_24_func(L_74_arg1)
return {
R = L_74_arg1.R * 255,
G = L_74_arg1.G * 255,
B = L_74_arg1.B * 255
}
end
local function L_25_func(L_75_arg1)
return Color3.fromRGB(L_75_arg1.R, L_75_arg1.G, L_75_arg1.B)
end
local function L_26_func(L_76_arg1)
local L_77_ = L_7_:JSONDecode(L_76_arg1)
for L_78_forvar1, L_79_forvar2 in next, L_77_ do
if L_10_.Flags[L_78_forvar1] then
task.spawn(function()
if L_10_.Flags[L_78_forvar1].Type == "Colorpicker" then
L_10_.Flags[L_78_forvar1]:Set(L_25_func(L_79_forvar2))
else
L_10_.Flags[L_78_forvar1]:Set(L_79_forvar2)
end
end)
end
end
end
local function L_27_func(L_80_arg1)
local L_81_ = {}
for L_82_forvar1, L_83_forvar2 in next, L_10_.Flags do
if L_83_forvar2.Save then
if L_83_forvar2.Type == "Colorpicker" then
L_81_[L_82_forvar1] = L_24_func(L_83_forvar2.Value)
else
L_81_[L_82_forvar1] = L_83_forvar2.Value
end
end
end
if getfenv().writefile then
getfenv().writefile(string.format("%s/%s.txt", L_10_["Folder"], L_80_arg1), L_7_:JSONEncode(L_81_))
end
end
local L_28_ = {
Enum.UserInputType.MouseButton1,
Enum.UserInputType.MouseButton2,
Enum.UserInputType.MouseButton3
}
local L_29_ = {
Enum.KeyCode.Unknown,
Enum.KeyCode.W,
Enum.KeyCode.A,
Enum.KeyCode.S,
Enum.KeyCode.D,
Enum.KeyCode.Up,
Enum.KeyCode.Left,
Enum.KeyCode.Down,
Enum.KeyCode.Right,
Enum.KeyCode.Slash,
Enum.KeyCode.Tab,
Enum.KeyCode.Backspace,
Enum.KeyCode.Escape
}
local function L_30_func(L_84_arg1, L_85_arg2)
for _, L_87_forvar2 in next, L_84_arg1 do
if L_87_forvar2 == L_85_arg2 then
return true
end
end
end
L_17_func("Corner", function(L_88_arg1, L_89_arg2)
local L_90_ = L_16_func("UICorner", {
CornerRadius = UDim.new(L_88_arg1 or 0, L_89_arg2 or 10)
})
return L_90_
end)
L_17_func("Stroke", function(L_91_arg1, L_92_arg2)
local L_93_ = L_16_func("UIStroke", {
Color = L_91_arg1 or Color3.fromRGB(255, 255, 255),
Thickness = L_92_arg2 or 1
})
return L_93_
end)
L_17_func("List", function(L_94_arg1, L_95_arg2)
local L_96_ = L_16_func("UIListLayout", {
SortOrder = Enum.SortOrder.LayoutOrder,
Padding = UDim.new(L_94_arg1 or 0, L_95_arg2 or 0)
})
return L_96_
end)
L_17_func("Padding", function(L_97_arg1, L_98_arg2, L_99_arg3, L_100_arg4)
local L_101_ = L_16_func("UIPadding", {
PaddingBottom = UDim.new(0, L_97_arg1 or 4),
PaddingLeft = UDim.new(0, L_98_arg2 or 4),
PaddingRight = UDim.new(0, L_99_arg3 or 4),
PaddingTop = UDim.new(0, L_100_arg4 or 4)
})
return L_101_
end)
L_17_func("TFrame", function()
local L_102_ = L_16_func("Frame", {
BackgroundTransparency = 1
})
return L_102_
end)
L_17_func("Frame", function(L_103_arg1)
local L_104_ = L_16_func("Frame", {
BackgroundColor3 = L_103_arg1 or Color3.fromRGB(255, 255, 255),
BorderSizePixel = 0
})
return L_104_
end)
L_17_func("RoundFrame", function(L_105_arg1, L_106_arg2, L_107_arg3)
local L_108_ = L_16_func("Frame", {
BackgroundColor3 = L_105_arg1 or Color3.fromRGB(255, 255, 255),
BorderSizePixel = 0
}, {
L_16_func("UICorner", {
CornerRadius = UDim.new(L_106_arg2, L_107_arg3)
})
})
return L_108_
end)
L_17_func("Button", function()
local L_109_ = L_16_func("TextButton", {
Text = "",
AutoButtonColor = false,
BackgroundTransparency = 1,
BorderSizePixel = 0
})
return L_109_
end)
L_17_func("ScrollFrame", function(L_110_arg1, L_111_arg2)
local L_112_ = L_16_func("ScrollingFrame", {
BackgroundTransparency = 1,
MidImage = "rbxassetid://7445543667",
BottomImage = "rbxassetid://7445543667",
TopImage = "rbxassetid://7445543667",
ScrollBarImageColor3 = L_110_arg1,
BorderSizePixel = 0,
ScrollBarThickness = L_111_arg2,
CanvasSize = UDim2.new(0, 0, 0, 0)
})
return L_112_
end)
L_17_func("Image", function(L_113_arg1)
local L_114_ = L_16_func("ImageLabel", {
Image = L_113_arg1,
BackgroundTransparency = 1
})
if L_11_[L_113_arg1] then
L_114_.Image = L_11_[L_113_arg1]
end
return L_114_
end)
L_17_func("ImageButton", function(L_115_arg1)
local L_116_ = L_16_func("ImageButton", {
Image = L_115_arg1,
BackgroundTransparency = 1
})
return L_116_
end)
L_17_func("Label", function(L_117_arg1, L_118_arg2, L_119_arg3)
local L_120_ = L_16_func("TextLabel", {
Text = L_117_arg1 or "",
TextColor3 = Color3.fromRGB(240, 240, 240),
TextTransparency = L_119_arg3 or 0,
TextSize = L_118_arg2 or 15,
Font = Enum.Font.Gotham,
RichText = true,
BackgroundTransparency = 1,
TextXAlignment = Enum.TextXAlignment.Left
})
return L_120_
end)
local L_31_ = L_19_func(L_20_func(L_18_func("TFrame"), {
L_19_func(L_18_func("List"), {
HorizontalAlignment = Enum.HorizontalAlignment.Center,
SortOrder = Enum.SortOrder.LayoutOrder,
VerticalAlignment = Enum.VerticalAlignment.Bottom,
Padding = UDim.new(0, 5)
})
}), {
Position = UDim2.new(1, -25, 1, -25),
Size = UDim2.new(0, 300, 1, -25),
AnchorPoint = Vector2.new(1, 1),
Parent = L_12_
})
function L_10_:MakeNotification(L_121_arg1)
task.spawn(function()
L_121_arg1.Name = L_121_arg1.Name or "Notification"
L_121_arg1.Content = L_121_arg1.Content or "Test"