-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScript
More file actions
1715 lines (1540 loc) · 62.1 KB
/
Script
File metadata and controls
1715 lines (1540 loc) · 62.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
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
-- Gui to Lua
-- Version: 3.2
-- Instances:
local infernox = Instance.new("ScreenGui")
local mainframe = Instance.new("Frame")
local titlebar = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local ImageLabel = Instance.new("ImageLabel")
local version2 = Instance.new("TextLabel")
local sidebar = Instance.new("Frame")
local homeopen = Instance.new("TextButton")
local mischubopen = Instance.new("TextButton")
local settingsopen = Instance.new("TextButton")
local gamehubopen = Instance.new("TextButton")
local changelogopen = Instance.new("TextButton")
local whitelistpage = Instance.new("Frame")
local status = Instance.new("TextLabel")
local TextLabel_2 = Instance.new("TextLabel")
local TextLabel_3 = Instance.new("TextLabel")
local checkbutton = Instance.new("TextButton")
local homepage = Instance.new("Frame")
local TextLabel_4 = Instance.new("TextLabel")
local TextLabel_5 = Instance.new("TextLabel")
local TextLabel_6 = Instance.new("TextLabel")
local ImageLabel_2 = Instance.new("ImageLabel")
local settingspage = Instance.new("Frame")
local TextLabel_7 = Instance.new("TextLabel")
local TextLabel_8 = Instance.new("TextLabel")
local changelogpage = Instance.new("Frame")
local changelogtitle = Instance.new("TextLabel")
local log1 = Instance.new("TextLabel")
local log2 = Instance.new("TextLabel")
local log3 = Instance.new("TextLabel")
local log4 = Instance.new("TextLabel")
local log5 = Instance.new("TextLabel")
local log6 = Instance.new("TextLabel")
local log7 = Instance.new("TextLabel")
local creditstitle = Instance.new("TextLabel")
local credit1 = Instance.new("TextLabel")
local cedit2 = Instance.new("TextLabel")
local gamehubpage = Instance.new("Frame")
local ButtonHolder = Instance.new("ScrollingFrame")
local petsimx = Instance.new("TextButton")
local caveworld = Instance.new("TextButton")
local bloxfruits = Instance.new("TextButton")
local UIGridLayout = Instance.new("UIGridLayout")
local Selections = Instance.new("Frame")
local next2 = Instance.new("ImageButton")
local back = Instance.new("ImageButton")
local BloxFruitsScripts = Instance.new("ScrollingFrame")
local sleapy = Instance.new("TextButton")
local UIGridLayout_2 = Instance.new("UIGridLayout")
local PetSimulatorXScripts = Instance.new("ScrollingFrame")
local psx = Instance.new("TextButton")
local UIGridLayout_3 = Instance.new("UIGridLayout")
local shitboyhub = Instance.new("TextButton")
local stattracker = Instance.new("TextButton")
local gemfarm = Instance.new("TextButton")
local CaveWorldScripts = Instance.new("ScrollingFrame")
local UIGridLayout_4 = Instance.new("UIGridLayout")
local caveworldgui = Instance.new("TextButton")
local instantmine = Instance.new("TextButton")
local mischubpage = Instance.new("Frame")
local ButtonHolder_2 = Instance.new("ScrollingFrame")
local admin = Instance.new("TextButton")
local UIGridLayout_5 = Instance.new("UIGridLayout")
local chatscripts = Instance.new("TextButton")
local toolscripts = Instance.new("TextButton")
local characterscripts = Instance.new("TextButton")
local aimscripts = Instance.new("TextButton")
local Selections_2 = Instance.new("Frame")
local next2_2 = Instance.new("ImageButton")
local back_2 = Instance.new("ImageButton")
local AdminScripts = Instance.new("ScrollingFrame")
local infiniteyield = Instance.new("TextButton")
local UIGridLayout_6 = Instance.new("UIGridLayout")
local reviz = Instance.new("TextButton")
local cmdx = Instance.new("TextButton")
local ChatScripts = Instance.new("ScrollingFrame")
local UIGridLayout_7 = Instance.new("UIGridLayout")
local discordemojis = Instance.new("TextButton")
local spychat = Instance.new("TextButton")
local ToolScripts = Instance.new("ScrollingFrame")
local UIGridLayout_8 = Instance.new("UIGridLayout")
local toolautoequip = Instance.new("TextButton")
local toolautoclicker = Instance.new("TextButton")
local CharacterScripts = Instance.new("ScrollingFrame")
local UIGridLayout_9 = Instance.new("UIGridLayout")
local antiafk = Instance.new("TextButton")
local antifling = Instance.new("TextButton")
local invisible = Instance.new("TextButton")
local drophats = Instance.new("TextButton")
local AimScripts = Instance.new("ScrollingFrame")
local UIGridLayout_10 = Instance.new("UIGridLayout")
local projectbullshit = Instance.new("TextButton")
local ScriptInfoHolder = Instance.new("Frame")
local scriptinfotemplate = Instance.new("Frame")
local scriptname = Instance.new("TextLabel")
local zoomclick = Instance.new("TextLabel")
local scriptpicture = Instance.new("ImageButton")
local executebutton = Instance.new("TextButton")
local scriptinfo = Instance.new("TextLabel")
local rating = Instance.new("TextLabel")
local scriptpicturezoomed = Instance.new("ImageButton")
local background = Instance.new("TextLabel")
--Properties:
infernox.Name = "infernox"
infernox.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
infernox.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
mainframe.Name = "mainframe"
mainframe.Parent = infernox
mainframe.Active = true
mainframe.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
mainframe.BorderColor3 = Color3.fromRGB(255, 255, 255)
mainframe.Position = UDim2.new(0, 348, 0, 278)
mainframe.Size = UDim2.new(0, 568, 0, 337)
titlebar.Name = "titlebar"
titlebar.Parent = mainframe
titlebar.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
titlebar.BorderColor3 = Color3.fromRGB(255, 255, 255)
titlebar.Position = UDim2.new(-0.00168803043, 0, 0, 0)
titlebar.Size = UDim2.new(0, 568, 0, 28)
TextLabel.Parent = titlebar
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Position = UDim2.new(0.0633802786, 0, 0.137931272, 0)
TextLabel.Size = UDim2.new(0, 67, 0, 20)
TextLabel.Font = Enum.Font.Nunito
TextLabel.Text = "Inferno X"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextScaled = true
TextLabel.TextSize = 1.000
TextLabel.TextWrapped = true
ImageLabel.Parent = titlebar
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.Size = UDim2.new(0, 29, 0, 29)
ImageLabel.Image = "rbxassetid://7379627887"
version2.Name = "version2"
version2.Parent = titlebar
version2.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
version2.BorderColor3 = Color3.fromRGB(255, 255, 255)
version2.Position = UDim2.new(0.691603184, 0, -1.86264515e-08, 0)
version2.Size = UDim2.new(0, 176, 0, 28)
version2.Font = Enum.Font.Nunito
version2.Text = "Pre-Alpha v1.0.0"
version2.TextColor3 = Color3.fromRGB(255, 255, 255)
version2.TextScaled = true
version2.TextSize = 1.000
version2.TextWrapped = true
sidebar.Name = "sidebar"
sidebar.Parent = mainframe
sidebar.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
sidebar.BorderColor3 = Color3.fromRGB(255, 255, 255)
sidebar.Position = UDim2.new(-0.00168800354, 0, 0, 0)
sidebar.Size = UDim2.new(0, 103, 0, 337)
sidebar.ZIndex = 0
homeopen.Name = "homeopen"
homeopen.Parent = sidebar
homeopen.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
homeopen.BorderColor3 = Color3.fromRGB(255, 255, 255)
homeopen.BorderSizePixel = 0
homeopen.Position = UDim2.new(-1.48143585e-07, 0, 0.0860534161, 0)
homeopen.Size = UDim2.new(0, 103, 0, 21)
homeopen.Font = Enum.Font.Nunito
homeopen.Text = "Home"
homeopen.TextColor3 = Color3.fromRGB(255, 255, 255)
homeopen.TextScaled = true
homeopen.TextSize = 14.000
homeopen.TextWrapped = true
mischubopen.Name = "mischubopen"
mischubopen.Parent = sidebar
mischubopen.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
mischubopen.BorderColor3 = Color3.fromRGB(255, 255, 255)
mischubopen.BorderSizePixel = 0
mischubopen.Position = UDim2.new(-1.48143585e-07, 0, 0.166172117, 0)
mischubopen.Size = UDim2.new(0, 103, 0, 21)
mischubopen.Font = Enum.Font.Nunito
mischubopen.Text = "Misc Hub"
mischubopen.TextColor3 = Color3.fromRGB(255, 255, 255)
mischubopen.TextScaled = true
mischubopen.TextSize = 14.000
mischubopen.TextWrapped = true
settingsopen.Name = "settingsopen"
settingsopen.Parent = sidebar
settingsopen.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
settingsopen.BorderColor3 = Color3.fromRGB(255, 255, 255)
settingsopen.BorderSizePixel = 0
settingsopen.Position = UDim2.new(-1.48143585e-07, 0, 0.329376787, 0)
settingsopen.Size = UDim2.new(0, 103, 0, 21)
settingsopen.Font = Enum.Font.Nunito
settingsopen.Text = "Settings"
settingsopen.TextColor3 = Color3.fromRGB(255, 255, 255)
settingsopen.TextScaled = true
settingsopen.TextSize = 14.000
settingsopen.TextWrapped = true
gamehubopen.Name = "gamehubopen"
gamehubopen.Parent = sidebar
gamehubopen.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
gamehubopen.BorderColor3 = Color3.fromRGB(255, 255, 255)
gamehubopen.BorderSizePixel = 0
gamehubopen.Position = UDim2.new(-1.48143585e-07, 0, 0.240356073, 0)
gamehubopen.Size = UDim2.new(0, 103, 0, 21)
gamehubopen.Font = Enum.Font.Nunito
gamehubopen.Text = "Game Hub"
gamehubopen.TextColor3 = Color3.fromRGB(255, 255, 255)
gamehubopen.TextScaled = true
gamehubopen.TextSize = 14.000
gamehubopen.TextWrapped = true
changelogopen.Name = "changelogopen"
changelogopen.Parent = sidebar
changelogopen.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
changelogopen.BorderColor3 = Color3.fromRGB(255, 255, 255)
changelogopen.BorderSizePixel = 0
changelogopen.Position = UDim2.new(-1.48143585e-07, 0, 0.93768537, 0)
changelogopen.Size = UDim2.new(0, 103, 0, 21)
changelogopen.Font = Enum.Font.Nunito
changelogopen.Text = "Changelog"
changelogopen.TextColor3 = Color3.fromRGB(255, 255, 255)
changelogopen.TextScaled = true
changelogopen.TextSize = 14.000
changelogopen.TextWrapped = true
whitelistpage.Name = "whitelistpage"
whitelistpage.Parent = mainframe
whitelistpage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
whitelistpage.BackgroundTransparency = 1.000
whitelistpage.BorderColor3 = Color3.fromRGB(255, 255, 255)
whitelistpage.Position = UDim2.new(0.180000007, 0, 0.0860534161, 0)
whitelistpage.Size = UDim2.new(0, 465, 0, 308)
whitelistpage.Visible = false
status.Name = "status"
status.Parent = whitelistpage
status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
status.BackgroundTransparency = 1.000
status.Position = UDim2.new(0.225249916, 0, 0.363387585, 0)
status.Size = UDim2.new(0, 253, 0, 80)
status.Visible = false
status.Font = Enum.Font.Nunito
status.Text = "Checking your whitelist..."
status.TextColor3 = Color3.fromRGB(255, 255, 255)
status.TextScaled = true
status.TextSize = 1.000
status.TextWrapped = true
TextLabel_2.Parent = whitelistpage
TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_2.BackgroundTransparency = 1.000
TextLabel_2.Position = UDim2.new(-0.00215053838, 0, 0.925075889, 0)
TextLabel_2.Size = UDim2.new(0, 201, 0, 23)
TextLabel_2.Font = Enum.Font.Nunito
TextLabel_2.Text = "discord.gg/CDU5EYHUau"
TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_2.TextScaled = true
TextLabel_2.TextSize = 1.000
TextLabel_2.TextWrapped = true
TextLabel_3.Parent = whitelistpage
TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_3.BackgroundTransparency = 1.000
TextLabel_3.Position = UDim2.new(0.13118279, 0, 0.0159849692, 0)
TextLabel_3.Size = UDim2.new(0, 324, 0, 70)
TextLabel_3.Font = Enum.Font.Nunito
TextLabel_3.Text = "Whitelist Check"
TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_3.TextScaled = true
TextLabel_3.TextSize = 1.000
TextLabel_3.TextWrapped = true
checkbutton.Name = "checkbutton"
checkbutton.Parent = whitelistpage
checkbutton.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
checkbutton.BorderColor3 = Color3.fromRGB(255, 255, 255)
checkbutton.Position = UDim2.new(0.28172043, 0, 0.396240234, 0)
checkbutton.Size = UDim2.new(0, 184, 0, 62)
checkbutton.Font = Enum.Font.Nunito
checkbutton.Text = "Check Whitelist"
checkbutton.TextColor3 = Color3.fromRGB(255, 255, 255)
checkbutton.TextScaled = true
checkbutton.TextSize = 14.000
checkbutton.TextWrapped = true
homepage.Name = "homepage"
homepage.Parent = mainframe
homepage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
homepage.BackgroundTransparency = 1.000
homepage.BorderColor3 = Color3.fromRGB(255, 255, 255)
homepage.Position = UDim2.new(0.179649994, 0, 0.0860534161, 0)
homepage.Size = UDim2.new(0, 465, 0, 307)
homepage.Visible = false
TextLabel_4.Parent = homepage
TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_4.BackgroundTransparency = 1.000
TextLabel_4.Position = UDim2.new(-0.00270707323, 0, -0.00325230905, 0)
TextLabel_4.Size = UDim2.new(0, 466, 0, 29)
TextLabel_4.Font = Enum.Font.Nunito
TextLabel_4.Text = "Welcome to Inferno X!"
TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_4.TextScaled = true
TextLabel_4.TextSize = 1.000
TextLabel_4.TextWrapped = true
TextLabel_5.Parent = homepage
TextLabel_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_5.BackgroundTransparency = 1.000
TextLabel_5.Position = UDim2.new(0, 0, 0.091210179, 0)
TextLabel_5.Size = UDim2.new(0, 464, 0, 241)
TextLabel_5.Font = Enum.Font.Nunito
TextLabel_5.Text = "Inferno X is a massive Script Hub, think of it as a in-game mini version of robloxscripts.com, allowing people to select a vast amount of games/scripts. There are 2 sections to the Script Hub, the Game Hub and the Misc Hub. The Game Hub features a large list of games to choose from, once you pick a game there will be multiple scripts from that game, as you choose one of the scripts inside of a game, there will be a popup on the side giving a brief explanation on the script. The Misc Hub will feature misc. (miscellaneous) scripts, that work for multiple games, such as ESP, Sword Fighting scripts, Gun Fighting scripts, universal aimbot/aimlock, or even scripts that let you use commands such as Infinite Yield. Explanations on the script will also be given when clicked on. Enjoy Inferno X!"
TextLabel_5.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_5.TextScaled = true
TextLabel_5.TextSize = 1.000
TextLabel_5.TextWrapped = true
TextLabel_6.Parent = homepage
TextLabel_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_6.BackgroundTransparency = 1.000
TextLabel_6.Position = UDim2.new(-0.00430107536, 0, 0.876226485, 0)
TextLabel_6.Size = UDim2.new(0, 464, 0, 38)
TextLabel_6.Font = Enum.Font.Nunito
TextLabel_6.Text = "Discord Server Invite: https://discord.gg/CDU5EYHUau"
TextLabel_6.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_6.TextScaled = true
TextLabel_6.TextSize = 1.000
TextLabel_6.TextWrapped = true
ImageLabel_2.Parent = mainframe
ImageLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel_2.BackgroundTransparency = 1.000
ImageLabel_2.Position = UDim2.new(0.317991823, 0, 0.085763447, 0)
ImageLabel_2.Size = UDim2.new(0, 307, 0, 307)
ImageLabel_2.Image = "rbxassetid://7379627887"
ImageLabel_2.ImageTransparency = 0.800
settingspage.Name = "settingspage"
settingspage.Parent = mainframe
settingspage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
settingspage.BackgroundTransparency = 1.000
settingspage.BorderColor3 = Color3.fromRGB(255, 255, 255)
settingspage.Position = UDim2.new(0.179649994, 0, 0.0860534161, 0)
settingspage.Size = UDim2.new(0, 465, 0, 307)
settingspage.Visible = false
TextLabel_7.Parent = settingspage
TextLabel_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_7.BackgroundTransparency = 1.000
TextLabel_7.Position = UDim2.new(0.0526276603, 0, 0, 0)
TextLabel_7.Size = UDim2.new(0, 414, 0, 104)
TextLabel_7.Font = Enum.Font.Nunito
TextLabel_7.Text = "Settings Coming Soon!"
TextLabel_7.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_7.TextScaled = true
TextLabel_7.TextSize = 1.000
TextLabel_7.TextWrapped = true
TextLabel_8.Parent = settingspage
TextLabel_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_8.BackgroundTransparency = 1.000
TextLabel_8.Position = UDim2.new(0.0526276603, 0, 0.234527692, 0)
TextLabel_8.Size = UDim2.new(0, 414, 0, 104)
TextLabel_8.Font = Enum.Font.Nunito
TextLabel_8.Text = "Script Info is temporarily unavailable, but we will add it as a setting here to toggle it on/off."
TextLabel_8.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_8.TextScaled = true
TextLabel_8.TextSize = 1.000
TextLabel_8.TextWrapped = true
changelogpage.Name = "changelogpage"
changelogpage.Parent = mainframe
changelogpage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
changelogpage.BackgroundTransparency = 1.000
changelogpage.BorderColor3 = Color3.fromRGB(255, 255, 255)
changelogpage.Position = UDim2.new(0.179649994, 0, 0.0860534161, 0)
changelogpage.Size = UDim2.new(0, 465, 0, 307)
changelogpage.Visible = false
changelogtitle.Name = "changelogtitle"
changelogtitle.Parent = changelogpage
changelogtitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
changelogtitle.BackgroundTransparency = 1.000
changelogtitle.Position = UDim2.new(-0.000556535611, 0, -0.00650963793, 0)
changelogtitle.Size = UDim2.new(0, 466, 0, 29)
changelogtitle.Font = Enum.Font.Nunito
changelogtitle.Text = "Changelog"
changelogtitle.TextColor3 = Color3.fromRGB(255, 255, 255)
changelogtitle.TextScaled = true
changelogtitle.TextSize = 1.000
changelogtitle.TextWrapped = true
log1.Name = "log1"
log1.Parent = changelogpage
log1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log1.BackgroundTransparency = 1.000
log1.Position = UDim2.new(0.311271429, 0, 0.107496873, 0)
log1.Size = UDim2.new(0, 176, 0, 29)
log1.Font = Enum.Font.Nunito
log1.Text = "1. Fixed Misc Hub"
log1.TextColor3 = Color3.fromRGB(255, 255, 255)
log1.TextScaled = true
log1.TextSize = 1.000
log1.TextWrapped = true
log2.Name = "log2"
log2.Parent = changelogpage
log2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log2.BackgroundTransparency = 1.000
log2.Position = UDim2.new(0.309120893, 0, 0.224760711, 0)
log2.Size = UDim2.new(0, 176, 0, 29)
log2.Font = Enum.Font.Nunito
log2.Text = "2. Fixed Game Hub"
log2.TextColor3 = Color3.fromRGB(255, 255, 255)
log2.TextScaled = true
log2.TextSize = 1.000
log2.TextWrapped = true
log3.Name = "log3"
log3.Parent = changelogpage
log3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log3.BackgroundTransparency = 1.000
log3.Position = UDim2.new(0.309120893, 0, 0.351796538, 0)
log3.Size = UDim2.new(0, 176, 0, 29)
log3.Font = Enum.Font.Nunito
log3.Text = "3. Settings coming soon"
log3.TextColor3 = Color3.fromRGB(255, 255, 255)
log3.TextScaled = true
log3.TextSize = 1.000
log3.TextWrapped = true
log4.Name = "log4"
log4.Parent = changelogpage
log4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log4.BackgroundTransparency = 1.000
log4.Position = UDim2.new(0.309120893, 0, 0.472317696, 0)
log4.Size = UDim2.new(0, 176, 0, 29)
log4.Font = Enum.Font.Nunito
log4.Text = "4. Filled Changelog"
log4.TextColor3 = Color3.fromRGB(255, 255, 255)
log4.TextScaled = true
log4.TextSize = 1.000
log4.TextWrapped = true
log5.Name = "log5"
log5.Parent = changelogpage
log5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log5.BackgroundTransparency = 1.000
log5.Position = UDim2.new(0.309120893, 0, 0.586324215, 0)
log5.Size = UDim2.new(0, 176, 0, 29)
log5.Font = Enum.Font.Nunito
log5.Text = "5. Finished Home Page"
log5.TextColor3 = Color3.fromRGB(255, 255, 255)
log5.TextScaled = true
log5.TextSize = 1.000
log5.TextWrapped = true
log6.Name = "log6"
log6.Parent = changelogpage
log6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log6.BackgroundTransparency = 1.000
log6.Position = UDim2.new(0.309120893, 0, 0.700330734, 0)
log6.Size = UDim2.new(0, 176, 0, 29)
log6.Font = Enum.Font.Nunito
log6.Text = "6. Added some scripts into the Hubs"
log6.TextColor3 = Color3.fromRGB(255, 255, 255)
log6.TextScaled = true
log6.TextSize = 1.000
log6.TextWrapped = true
log7.Name = "log7"
log7.Parent = changelogpage
log7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
log7.BackgroundTransparency = 1.000
log7.Position = UDim2.new(0.309120893, 0, 0.811079919, 0)
log7.Size = UDim2.new(0, 176, 0, 29)
log7.Font = Enum.Font.Nunito
log7.Text = "7. And finally, released Inferno X"
log7.TextColor3 = Color3.fromRGB(255, 255, 255)
log7.TextScaled = true
log7.TextSize = 1.000
log7.TextWrapped = true
creditstitle.Name = "creditstitle"
creditstitle.Parent = changelogpage
creditstitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
creditstitle.BackgroundTransparency = 1.000
creditstitle.Position = UDim2.new(-0.0822769701, 0, 0.00326234102, 0)
creditstitle.Size = UDim2.new(0, 176, 0, 29)
creditstitle.Font = Enum.Font.Nunito
creditstitle.Text = "Credits:"
creditstitle.TextColor3 = Color3.fromRGB(255, 255, 255)
creditstitle.TextScaled = true
creditstitle.TextSize = 1.000
creditstitle.TextWrapped = true
credit1.Name = "credit1"
credit1.Parent = changelogpage
credit1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
credit1.BackgroundTransparency = 1.000
credit1.Position = UDim2.new(-0.000556535611, 0, 0.104239546, 0)
credit1.Size = UDim2.new(0, 109, 0, 84)
credit1.Font = Enum.Font.Nunito
credit1.Text = "icee#4886 - founder, main scripter/gui maker"
credit1.TextColor3 = Color3.fromRGB(255, 255, 255)
credit1.TextScaled = true
credit1.TextSize = 1.000
credit1.TextWrapped = true
cedit2.Name = "cedit2"
cedit2.Parent = changelogpage
cedit2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
cedit2.BackgroundTransparency = 1.000
cedit2.Position = UDim2.new(-0.000556535611, 0, 0.4071711, 0)
cedit2.Size = UDim2.new(0, 109, 0, 84)
cedit2.Font = Enum.Font.Nunito
cedit2.Text = "travis#7950 - co-founder, scripter/gui assistance"
cedit2.TextColor3 = Color3.fromRGB(255, 255, 255)
cedit2.TextScaled = true
cedit2.TextSize = 1.000
cedit2.TextWrapped = true
gamehubpage.Name = "gamehubpage"
gamehubpage.Parent = mainframe
gamehubpage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
gamehubpage.BorderColor3 = Color3.fromRGB(255, 255, 255)
gamehubpage.Position = UDim2.new(0.179649994, 0, 0.0860534161, 0)
gamehubpage.Size = UDim2.new(0, 465, 0, 307)
gamehubpage.Visible = false
gamehubpage.ZIndex = 0
ButtonHolder.Name = "ButtonHolder"
ButtonHolder.Parent = gamehubpage
ButtonHolder.Active = true
ButtonHolder.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
ButtonHolder.BorderColor3 = Color3.fromRGB(255, 255, 255)
ButtonHolder.Position = UDim2.new(0, 0, 0.107491858, 0)
ButtonHolder.Size = UDim2.new(0, 465, 0, 275)
ButtonHolder.ScrollBarThickness = 10
petsimx.Name = "petsimx"
petsimx.Parent = ButtonHolder
petsimx.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
petsimx.BorderColor3 = Color3.fromRGB(255, 255, 255)
petsimx.Position = UDim2.new(0.0301075131, 0, 0.292344123, 0)
petsimx.Size = UDim2.new(0, 86, 0, 37)
petsimx.Font = Enum.Font.Nunito
petsimx.Text = "Pet Simulator X"
petsimx.TextColor3 = Color3.fromRGB(255, 255, 255)
petsimx.TextScaled = true
petsimx.TextSize = 14.000
petsimx.TextWrapped = true
caveworld.Name = "caveworld"
caveworld.Parent = ButtonHolder
caveworld.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
caveworld.BorderColor3 = Color3.fromRGB(255, 255, 255)
caveworld.Position = UDim2.new(0.266666651, 0, 0.292344123, 0)
caveworld.Size = UDim2.new(0, 86, 0, 37)
caveworld.Font = Enum.Font.Nunito
caveworld.Text = "CaveWorld"
caveworld.TextColor3 = Color3.fromRGB(255, 255, 255)
caveworld.TextScaled = true
caveworld.TextSize = 14.000
caveworld.TextWrapped = true
bloxfruits.Name = "bloxfruits"
bloxfruits.Parent = ButtonHolder
bloxfruits.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
bloxfruits.BorderColor3 = Color3.fromRGB(255, 255, 255)
bloxfruits.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
bloxfruits.Size = UDim2.new(0, 86, 0, 37)
bloxfruits.Font = Enum.Font.Nunito
bloxfruits.Text = "Blox Fruits"
bloxfruits.TextColor3 = Color3.fromRGB(255, 255, 255)
bloxfruits.TextScaled = true
bloxfruits.TextSize = 14.000
bloxfruits.TextWrapped = true
UIGridLayout.Parent = ButtonHolder
UIGridLayout.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout.CellSize = UDim2.new(0, 86, 0, 37)
Selections.Name = "Selections"
Selections.Parent = gamehubpage
Selections.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
Selections.BorderColor3 = Color3.fromRGB(255, 255, 255)
Selections.Size = UDim2.new(0, 465, 0, 33)
next2.Name = "next2"
next2.Parent = Selections
next2.BackgroundTransparency = 1.000
next2.Position = UDim2.new(0.926881552, 0, -0.0151515007, 0)
next2.Size = UDim2.new(0, 33, 0, 33)
next2.ZIndex = 2
next2.Image = "rbxassetid://3926305904"
next2.ImageRectOffset = Vector2.new(964, 284)
next2.ImageRectSize = Vector2.new(36, 36)
back.Name = "back"
back.Parent = Selections
back.BackgroundTransparency = 1.000
back.Position = UDim2.new(-0.00107526779, 0, -0.016843766, 0)
back.Size = UDim2.new(0, 33, 0, 33)
back.ZIndex = 2
back.Image = "rbxassetid://3926305904"
back.ImageRectOffset = Vector2.new(724, 284)
back.ImageRectSize = Vector2.new(36, 36)
BloxFruitsScripts.Name = "BloxFruitsScripts"
BloxFruitsScripts.Parent = gamehubpage
BloxFruitsScripts.Active = true
BloxFruitsScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
BloxFruitsScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
BloxFruitsScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
BloxFruitsScripts.Size = UDim2.new(0, 465, 0, 275)
BloxFruitsScripts.Visible = false
BloxFruitsScripts.ScrollBarThickness = 10
sleapy.Name = "sleapy"
sleapy.Parent = BloxFruitsScripts
sleapy.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
sleapy.BorderColor3 = Color3.fromRGB(255, 255, 255)
sleapy.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
sleapy.Size = UDim2.new(0, 86, 0, 37)
sleapy.Font = Enum.Font.Nunito
sleapy.Text = "Blox Fruits by Sleapy"
sleapy.TextColor3 = Color3.fromRGB(255, 255, 255)
sleapy.TextScaled = true
sleapy.TextSize = 14.000
sleapy.TextWrapped = true
UIGridLayout_2.Parent = BloxFruitsScripts
UIGridLayout_2.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_2.CellSize = UDim2.new(0, 86, 0, 37)
PetSimulatorXScripts.Name = "PetSimulatorXScripts"
PetSimulatorXScripts.Parent = gamehubpage
PetSimulatorXScripts.Active = true
PetSimulatorXScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
PetSimulatorXScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
PetSimulatorXScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
PetSimulatorXScripts.Size = UDim2.new(0, 465, 0, 275)
PetSimulatorXScripts.Visible = false
PetSimulatorXScripts.ScrollBarThickness = 10
psx.Name = "psx"
psx.Parent = PetSimulatorXScripts
psx.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
psx.BorderColor3 = Color3.fromRGB(255, 255, 255)
psx.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
psx.Size = UDim2.new(0, 86, 0, 37)
psx.Font = Enum.Font.Nunito
psx.Text = "PSX by sqqssss"
psx.TextColor3 = Color3.fromRGB(255, 255, 255)
psx.TextScaled = true
psx.TextSize = 14.000
psx.TextWrapped = true
UIGridLayout_3.Parent = PetSimulatorXScripts
UIGridLayout_3.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_3.CellSize = UDim2.new(0, 86, 0, 37)
shitboyhub.Name = "shitboyhub"
shitboyhub.Parent = PetSimulatorXScripts
shitboyhub.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
shitboyhub.BorderColor3 = Color3.fromRGB(255, 255, 255)
shitboyhub.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
shitboyhub.Size = UDim2.new(0, 86, 0, 37)
shitboyhub.Font = Enum.Font.Nunito
shitboyhub.Text = "Shit Boy Hub"
shitboyhub.TextColor3 = Color3.fromRGB(255, 255, 255)
shitboyhub.TextScaled = true
shitboyhub.TextSize = 14.000
shitboyhub.TextWrapped = true
stattracker.Name = "stattracker"
stattracker.Parent = PetSimulatorXScripts
stattracker.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
stattracker.BorderColor3 = Color3.fromRGB(255, 255, 255)
stattracker.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
stattracker.Size = UDim2.new(0, 86, 0, 37)
stattracker.Font = Enum.Font.Nunito
stattracker.Text = "Stat Tracker"
stattracker.TextColor3 = Color3.fromRGB(255, 255, 255)
stattracker.TextScaled = true
stattracker.TextSize = 14.000
stattracker.TextWrapped = true
gemfarm.Name = "gemfarm"
gemfarm.Parent = PetSimulatorXScripts
gemfarm.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
gemfarm.BorderColor3 = Color3.fromRGB(255, 255, 255)
gemfarm.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
gemfarm.Size = UDim2.new(0, 86, 0, 37)
gemfarm.Font = Enum.Font.Nunito
gemfarm.Text = "Gem Farm (Samurai)"
gemfarm.TextColor3 = Color3.fromRGB(255, 255, 255)
gemfarm.TextScaled = true
gemfarm.TextSize = 14.000
gemfarm.TextWrapped = true
CaveWorldScripts.Name = "CaveWorldScripts"
CaveWorldScripts.Parent = gamehubpage
CaveWorldScripts.Active = true
CaveWorldScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
CaveWorldScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
CaveWorldScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
CaveWorldScripts.Size = UDim2.new(0, 465, 0, 275)
CaveWorldScripts.Visible = false
CaveWorldScripts.ScrollBarThickness = 10
UIGridLayout_4.Parent = CaveWorldScripts
UIGridLayout_4.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_4.CellSize = UDim2.new(0, 86, 0, 37)
caveworldgui.Name = "caveworldgui"
caveworldgui.Parent = CaveWorldScripts
caveworldgui.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
caveworldgui.BorderColor3 = Color3.fromRGB(255, 255, 255)
caveworldgui.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
caveworldgui.Size = UDim2.new(0, 86, 0, 37)
caveworldgui.Font = Enum.Font.Nunito
caveworldgui.Text = "CaveWorld Gui"
caveworldgui.TextColor3 = Color3.fromRGB(255, 255, 255)
caveworldgui.TextScaled = true
caveworldgui.TextSize = 14.000
caveworldgui.TextWrapped = true
instantmine.Name = "instantmine"
instantmine.Parent = CaveWorldScripts
instantmine.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
instantmine.BorderColor3 = Color3.fromRGB(255, 255, 255)
instantmine.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
instantmine.Size = UDim2.new(0, 86, 0, 37)
instantmine.Font = Enum.Font.Nunito
instantmine.Text = "CaveWorld Instant Mine"
instantmine.TextColor3 = Color3.fromRGB(255, 255, 255)
instantmine.TextScaled = true
instantmine.TextSize = 14.000
instantmine.TextWrapped = true
mischubpage.Name = "mischubpage"
mischubpage.Parent = mainframe
mischubpage.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
mischubpage.BorderColor3 = Color3.fromRGB(255, 255, 255)
mischubpage.Position = UDim2.new(0.179649994, 0, 0.0860534161, 0)
mischubpage.Size = UDim2.new(0, 465, 0, 307)
mischubpage.Visible = false
mischubpage.ZIndex = 0
ButtonHolder_2.Name = "ButtonHolder"
ButtonHolder_2.Parent = mischubpage
ButtonHolder_2.Active = true
ButtonHolder_2.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
ButtonHolder_2.BorderColor3 = Color3.fromRGB(255, 255, 255)
ButtonHolder_2.Position = UDim2.new(0, 0, 0.107491858, 0)
ButtonHolder_2.Size = UDim2.new(0, 465, 0, 275)
ButtonHolder_2.ScrollBarThickness = 10
admin.Name = "admin"
admin.Parent = ButtonHolder_2
admin.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
admin.BorderColor3 = Color3.fromRGB(255, 255, 255)
admin.Position = UDim2.new(0.161290318, 0, 0.336318046, 0)
admin.Size = UDim2.new(0, 86, 0, 37)
admin.Font = Enum.Font.Nunito
admin.Text = "Admin"
admin.TextColor3 = Color3.fromRGB(255, 255, 255)
admin.TextScaled = true
admin.TextSize = 14.000
admin.TextWrapped = true
UIGridLayout_5.Parent = ButtonHolder_2
UIGridLayout_5.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_5.CellSize = UDim2.new(0, 86, 0, 37)
chatscripts.Name = "chatscripts"
chatscripts.Parent = ButtonHolder_2
chatscripts.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
chatscripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
chatscripts.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
chatscripts.Size = UDim2.new(0, 86, 0, 37)
chatscripts.Font = Enum.Font.Nunito
chatscripts.Text = "Chat Scripts"
chatscripts.TextColor3 = Color3.fromRGB(255, 255, 255)
chatscripts.TextScaled = true
chatscripts.TextSize = 14.000
chatscripts.TextWrapped = true
toolscripts.Name = "toolscripts"
toolscripts.Parent = ButtonHolder_2
toolscripts.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
toolscripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
toolscripts.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
toolscripts.Size = UDim2.new(0, 86, 0, 37)
toolscripts.Font = Enum.Font.Nunito
toolscripts.Text = "Tool Scripts"
toolscripts.TextColor3 = Color3.fromRGB(255, 255, 255)
toolscripts.TextScaled = true
toolscripts.TextSize = 14.000
toolscripts.TextWrapped = true
characterscripts.Name = "characterscripts"
characterscripts.Parent = ButtonHolder_2
characterscripts.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
characterscripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
characterscripts.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
characterscripts.Size = UDim2.new(0, 86, 0, 37)
characterscripts.Font = Enum.Font.Nunito
characterscripts.Text = "Character Scripts"
characterscripts.TextColor3 = Color3.fromRGB(255, 255, 255)
characterscripts.TextScaled = true
characterscripts.TextSize = 14.000
characterscripts.TextWrapped = true
aimscripts.Name = "aimscripts"
aimscripts.Parent = ButtonHolder_2
aimscripts.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
aimscripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
aimscripts.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
aimscripts.Size = UDim2.new(0, 86, 0, 37)
aimscripts.Font = Enum.Font.Nunito
aimscripts.Text = "Aim Scripts"
aimscripts.TextColor3 = Color3.fromRGB(255, 255, 255)
aimscripts.TextScaled = true
aimscripts.TextSize = 14.000
aimscripts.TextWrapped = true
Selections_2.Name = "Selections"
Selections_2.Parent = mischubpage
Selections_2.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
Selections_2.BorderColor3 = Color3.fromRGB(255, 255, 255)
Selections_2.Size = UDim2.new(0, 465, 0, 33)
next2_2.Name = "next2"
next2_2.Parent = Selections_2
next2_2.BackgroundTransparency = 1.000
next2_2.Position = UDim2.new(0.926881552, 0, -0.0151515007, 0)
next2_2.Size = UDim2.new(0, 33, 0, 33)
next2_2.Visible = false
next2_2.ZIndex = 2
next2_2.Image = "rbxassetid://3926305904"
next2_2.ImageRectOffset = Vector2.new(964, 284)
next2_2.ImageRectSize = Vector2.new(36, 36)
back_2.Name = "back"
back_2.Parent = Selections_2
back_2.BackgroundTransparency = 1.000
back_2.Position = UDim2.new(-0.00107526779, 0, -0.016843766, 0)
back_2.Size = UDim2.new(0, 33, 0, 33)
back_2.ZIndex = 2
back_2.Image = "rbxassetid://3926305904"
back_2.ImageRectOffset = Vector2.new(724, 284)
back_2.ImageRectSize = Vector2.new(36, 36)
AdminScripts.Name = "AdminScripts"
AdminScripts.Parent = mischubpage
AdminScripts.Active = true
AdminScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
AdminScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
AdminScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
AdminScripts.Size = UDim2.new(0, 465, 0, 275)
AdminScripts.Visible = false
AdminScripts.ScrollBarThickness = 10
infiniteyield.Name = "infiniteyield"
infiniteyield.Parent = AdminScripts
infiniteyield.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
infiniteyield.BorderColor3 = Color3.fromRGB(255, 255, 255)
infiniteyield.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
infiniteyield.Size = UDim2.new(0, 86, 0, 37)
infiniteyield.Font = Enum.Font.Nunito
infiniteyield.Text = "InfiniteYield"
infiniteyield.TextColor3 = Color3.fromRGB(255, 255, 255)
infiniteyield.TextScaled = true
infiniteyield.TextSize = 14.000
infiniteyield.TextWrapped = true
UIGridLayout_6.Parent = AdminScripts
UIGridLayout_6.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_6.CellSize = UDim2.new(0, 86, 0, 37)
reviz.Name = "reviz"
reviz.Parent = AdminScripts
reviz.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
reviz.BorderColor3 = Color3.fromRGB(255, 255, 255)
reviz.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
reviz.Size = UDim2.new(0, 86, 0, 37)
reviz.Font = Enum.Font.Nunito
reviz.Text = "Reviz"
reviz.TextColor3 = Color3.fromRGB(255, 255, 255)
reviz.TextScaled = true
reviz.TextSize = 14.000
reviz.TextWrapped = true
cmdx.Name = "cmdx"
cmdx.Parent = AdminScripts
cmdx.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
cmdx.BorderColor3 = Color3.fromRGB(255, 255, 255)
cmdx.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
cmdx.Size = UDim2.new(0, 86, 0, 37)
cmdx.Font = Enum.Font.Nunito
cmdx.Text = "CmdX"
cmdx.TextColor3 = Color3.fromRGB(255, 255, 255)
cmdx.TextScaled = true
cmdx.TextSize = 14.000
cmdx.TextWrapped = true
ChatScripts.Name = "ChatScripts"
ChatScripts.Parent = mischubpage
ChatScripts.Active = true
ChatScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
ChatScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
ChatScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
ChatScripts.Size = UDim2.new(0, 465, 0, 275)
ChatScripts.Visible = false
ChatScripts.ScrollBarThickness = 10
UIGridLayout_7.Parent = ChatScripts
UIGridLayout_7.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_7.CellSize = UDim2.new(0, 86, 0, 37)
discordemojis.Name = "discordemojis"
discordemojis.Parent = ChatScripts
discordemojis.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
discordemojis.BorderColor3 = Color3.fromRGB(255, 255, 255)
discordemojis.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
discordemojis.Size = UDim2.new(0, 86, 0, 37)
discordemojis.Font = Enum.Font.Nunito
discordemojis.Text = "Discord Emojis"
discordemojis.TextColor3 = Color3.fromRGB(255, 255, 255)
discordemojis.TextScaled = true
discordemojis.TextSize = 14.000
discordemojis.TextWrapped = true
spychat.Name = "spychat"
spychat.Parent = ChatScripts
spychat.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
spychat.BorderColor3 = Color3.fromRGB(255, 255, 255)
spychat.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
spychat.Size = UDim2.new(0, 86, 0, 37)
spychat.Font = Enum.Font.Nunito
spychat.Text = "Spychat"
spychat.TextColor3 = Color3.fromRGB(255, 255, 255)
spychat.TextScaled = true
spychat.TextSize = 14.000
spychat.TextWrapped = true
ToolScripts.Name = "ToolScripts"
ToolScripts.Parent = mischubpage
ToolScripts.Active = true
ToolScripts.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
ToolScripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
ToolScripts.Position = UDim2.new(0, 0, 0.107491858, 0)
ToolScripts.Size = UDim2.new(0, 465, 0, 275)
ToolScripts.Visible = false
ToolScripts.ScrollBarThickness = 10
UIGridLayout_8.Parent = ToolScripts
UIGridLayout_8.CellPadding = UDim2.new(0, 6, 0, 10)
UIGridLayout_8.CellSize = UDim2.new(0, 86, 0, 37)
toolautoequip.Name = "toolautoequip"
toolautoequip.Parent = ToolScripts
toolautoequip.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
toolautoequip.BorderColor3 = Color3.fromRGB(255, 255, 255)
toolautoequip.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
toolautoequip.Size = UDim2.new(0, 86, 0, 37)
toolautoequip.Font = Enum.Font.Nunito
toolautoequip.Text = "Tool Auto equip"
toolautoequip.TextColor3 = Color3.fromRGB(255, 255, 255)
toolautoequip.TextScaled = true
toolautoequip.TextSize = 14.000
toolautoequip.TextWrapped = true
toolautoclicker.Name = "toolautoclicker"
toolautoclicker.Parent = ToolScripts
toolautoclicker.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
toolautoclicker.BorderColor3 = Color3.fromRGB(255, 255, 255)
toolautoclicker.Position = UDim2.new(0.030107528, 0, 0.070845753, 0)
toolautoclicker.Size = UDim2.new(0, 86, 0, 37)
toolautoclicker.Font = Enum.Font.Nunito
toolautoclicker.Text = "Tool Autoclicker"
toolautoclicker.TextColor3 = Color3.fromRGB(255, 255, 255)
toolautoclicker.TextScaled = true