-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathV5.lua
2266 lines (2048 loc) · 74.4 KB
/
V5.lua
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
local S1_ = game:GetService("UserInputService")
local S2_ = game:GetService("TweenService")
local S3_ = game:GetService("Players").LocalPlayer
local S4_ = game:GetService("RunService")
local S5_ = game:GetService("VirtualUser")
S3_.Idled:Connect(function()
S5_:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
task.wait(1)
S5_:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
end)
local function S6_func()
local S10_ = Instance.new("UIStroke")
local S11_ = Instance.new("UICorner")
local S12_ = Instance.new("ScreenGui")
local S13_ = Instance.new("ImageButton")
S12_.Name = "OpenClose"
S12_.Parent = S4_:IsStudio() and S3_.PlayerGui or (gethui() or cloneref(game:GetService("CoreGui")) or game:GetService("CoreGui"))
S12_.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
S13_.Parent = S12_
S13_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S13_.BorderColor3 = Color3.fromRGB(255, 0, 0)
S13_.Position = UDim2.new(0.1021, 0, 0.0743, 0)
S13_.Size = UDim2.new(0, 59, 0, 49)
S13_.Image = "rbxassetid://18372013477"
S13_.Visible = false
S11_.Name = "MainCorner"
S11_.CornerRadius = UDim.new(0, 9)
S11_.Parent = S13_
local S14_ = false
local S15_ = nil
local S16_ = nil
local function S17_func(S18_arg0)
local S19_ = S18_arg0.Position - S15_
S13_.Position = UDim2.new(S16_.X.Scale, S16_.X.Offset + S19_.X, S16_.Y.Scale, S16_.Y.Offset + S19_.Y)
end
S13_.InputBegan:Connect(function(S20_arg0)
if S20_arg0.UserInputType == Enum.UserInputType.Touch or S20_arg0.UserInputType == Enum.UserInputType.MouseButton1 then
S14_ = true
S15_ = S20_arg0.Position
S16_ = S13_.Position
S20_arg0.Changed:Connect(function()
if S20_arg0.UserInputState == Enum.UserInputState.End then
S14_ = false
end
end)
end
end)
S13_.InputChanged:Connect(function(S21_arg0)
if S14_ and (S21_arg0.UserInputType == Enum.UserInputType.MouseMovement or S21_arg0.UserInputType == Enum.UserInputType.Touch) then
S17_func(S21_arg0)
end
end)
return S13_
end
local S7_ = S6_func()
local function S8_func(S22_arg0, S23_arg1)
local function S24_func(S26_arg0, S27_arg1)
local S28_ = nil
local S29_ = nil
local S30_ = nil
local S31_ = nil
local function S32_func(S33_arg0)
local S34_ = S33_arg0.Position - S30_
local S35_ = UDim2.new(S31_.X.Scale, S31_.X.Offset + S34_.X, S31_.Y.Scale, S31_.Y.Offset + S34_.Y)
S27_arg1.Position = S35_
end
S26_arg0.InputBegan:Connect(function(S36_arg0)
if S36_arg0.UserInputType == Enum.UserInputType.MouseButton1 or S36_arg0.UserInputType == Enum.UserInputType.Touch then
S28_ = true
S30_ = S36_arg0.Position
S31_ = S27_arg1.Position
S36_arg0.Changed:Connect(function()
if S36_arg0.UserInputState == Enum.UserInputState.End then
S28_ = false
end
end)
end
end)
S26_arg0.InputChanged:Connect(function(S37_arg0)
if S37_arg0.UserInputType == Enum.UserInputType.MouseMovement or S37_arg0.UserInputType == Enum.UserInputType.Touch then
S29_ = S37_arg0
end
end)
S1_.InputChanged:Connect(function(S38_arg0)
if S38_arg0 == S29_ and S28_ then
S32_func(S38_arg0)
end
end)
end
local function S25_func(S39_arg0)
local S40_ = false
local S41_ = nil
local S42_ = nil
local S43_ = nil
local S44_ = S39_arg0.Size.X.Offset
if S44_ < 399 then
S44_ = 399
end
local S45_ = S44_ - 100
S39_arg0.Size = UDim2.new(0, S44_, 0, S45_)
local S46_ = Instance.new("Frame")
S46_.AnchorPoint = Vector2.new(1, 1)
S46_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S46_.BackgroundTransparency = 0.999
S46_.BorderSizePixel = 0
S46_.Position = UDim2.new(1, 20, 1, 20)
S46_.Size = UDim2.new(0, 40, 0, 40)
S46_.Name = "changesizeobject"
S46_.Parent = S39_arg0
local function S47_func(S48_arg0)
local S49_ = S48_arg0.Position - S42_
local S50_ = S43_.X.Offset + S49_.X
local S51_ = S43_.Y.Offset + S49_.Y
S50_ = math.max(S50_, S44_)
S51_ = math.max(S51_, S45_)
local S52_ = S2_:Create(S39_arg0, TweenInfo.new(0.2), {
Size = UDim2.new(0, S50_, 0, S51_)
})
S52_:Play()
end
S46_.InputBegan:Connect(function(S53_arg0)
if S53_arg0.UserInputType == Enum.UserInputType.MouseButton1 or S53_arg0.UserInputType == Enum.UserInputType.Touch then
S40_ = true
S42_ = S53_arg0.Position
S43_ = S39_arg0.Size
S53_arg0.Changed:Connect(function()
if S53_arg0.UserInputState == Enum.UserInputState.End then
S40_ = false
end
end)
end
end)
S46_.InputChanged:Connect(function(S54_arg0)
if S54_arg0.UserInputType == Enum.UserInputType.MouseMovement or S54_arg0.UserInputType == Enum.UserInputType.Touch then
S41_ = S54_arg0
end
end)
S1_.InputChanged:Connect(function(S55_arg0)
if S55_arg0 == S41_ and S40_ then
S47_func(S55_arg0)
end
end)
end
S25_func(S23_arg1)
S24_func(S22_arg0, S23_arg1)
end
function CircleClick(S56_arg0, S57_arg1, S58_arg2)
spawn(function()
S56_arg0.ClipsDescendants = true
local S59_ = Instance.new("ImageLabel")
S59_.Image = "rbxassetid://266543268"
S59_.ImageColor3 = Color3.fromRGB(80, 80, 80)
S59_.ImageTransparency = 0.8999999761581421
S59_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S59_.BackgroundTransparency = 1
S59_.ZIndex = 10
S59_.Name = "Circle"
S59_.Parent = S56_arg0
local S60_ = S57_arg1 - S59_.AbsolutePosition.X
local S61_ = S58_arg2 - S59_.AbsolutePosition.Y
S59_.Position = UDim2.new(0, S60_, 0, S61_)
local S62_ = 0
if S56_arg0.AbsoluteSize.X > S56_arg0.AbsoluteSize.Y then
S62_ = S56_arg0.AbsoluteSize.X * 1.5
elseif S56_arg0.AbsoluteSize.X < S56_arg0.AbsoluteSize.Y then
S62_ = S56_arg0.AbsoluteSize.Y * 1.5
elseif S56_arg0.AbsoluteSize.X == S56_arg0.AbsoluteSize.Y then
S62_ = S56_arg0.AbsoluteSize.X * 1.5
end
local S63_ = 0.5
S59_:TweenSizeAndPosition(UDim2.new(0, S62_, 0, S62_), UDim2.new(0.5, - S62_ / 2, 0.5, - S62_ / 2), "Out", "Quad", S63_, false, nil)
for S64_forvar0 = 1, 10 do
S59_.ImageTransparency = S59_.ImageTransparency + 0.01
wait(S63_ / 10)
end
S59_:Destroy()
end)
end
local S9_ = {}
S9_.Unloaded = false
function S9_:Notify(S65_arg0)
local S66_ = S65_arg0 or {}
S66_.Title = S66_.Title or "SpeedHubX"
S66_.Description = S66_.Description or "Notification"
S66_.Content = S66_.Content or "Content"
S66_.Color = S66_.Color or Color3.fromRGB(255, 0, 255)
S66_.Time = S66_.Time or 0.5
S66_.Delay = S66_.Delay or 5
local S67_ = {}
spawn(function()
if not game:GetService("CoreGui"):FindFirstChild("NotifyGui") then
local S84_ = Instance.new("ScreenGui");
S84_.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
S84_.Name = "NotifyGui"
S84_.Parent = game:GetService("CoreGui")
end
if not game:GetService("CoreGui").NotifyGui:FindFirstChild("NotifyLayout") then
local S85_ = Instance.new("Frame");
S85_.AnchorPoint = Vector2.new(1, 1)
S85_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S85_.BackgroundTransparency = 0.9990000128746033
S85_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S85_.BorderSizePixel = 0
S85_.Position = UDim2.new(1, -30, 1, -30)
S85_.Size = UDim2.new(0, 320, 1, 0)
S85_.Name = "NotifyLayout"
S85_.Parent = game:GetService("CoreGui").NotifyGui
local S86_ = 0
game:GetService("CoreGui").NotifyGui.NotifyLayout.ChildRemoved:Connect(function()
S86_ = 0
for S87_forvar0, S88_forvar1 in game:GetService("CoreGui").NotifyGui.NotifyLayout:GetChildren() do
S2_:Create(
S88_forvar1, TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), {
Position = UDim2.new(0, 0, 1, - ((S88_forvar1.Size.Y.Offset + 12) * S86_))
}):Play()
S86_ = S86_ + 1
end
end)
end
local S68_ = 0
for S89_forvar0, S90_forvar1 in game:GetService("CoreGui").NotifyGui.NotifyLayout:GetChildren() do
S68_ = - (S90_forvar1.Position.Y.Offset) + S90_forvar1.Size.Y.Offset + 12
end
local S69_ = Instance.new("Frame");
local S70_ = Instance.new("Frame");
local S71_ = Instance.new("UICorner");
local S72_ = Instance.new("Frame");
local S73_ = Instance.new("ImageLabel");
local S74_ = Instance.new("Frame");
local S75_ = Instance.new("TextLabel");
local S76_ = Instance.new("UIStroke");
local S77_ = Instance.new("UICorner");
local S78_ = Instance.new("TextLabel");
local S79_ = Instance.new("UIStroke");
local S80_ = Instance.new("TextButton");
local S81_ = Instance.new("ImageLabel");
local S82_ = Instance.new("TextLabel");
S69_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S69_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S69_.BorderSizePixel = 0
S69_.Size = UDim2.new(1, 0, 0, 150)
S69_.Name = "NotifyFrame"
S69_.BackgroundTransparency = 1
S69_.Parent = game:GetService("CoreGui").NotifyGui.NotifyLayout
S69_.AnchorPoint = Vector2.new(0, 1)
S69_.Position = UDim2.new(0, 0, 1, - (S68_))
S70_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S70_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S70_.BorderSizePixel = 0
S70_.Position = UDim2.new(0, 400, 0, 0)
S70_.Size = UDim2.new(1, 0, 1, 0)
S70_.Name = "NotifyFrameReal"
S70_.Parent = S69_
S71_.Parent = S70_
S71_.CornerRadius = UDim.new(0, 8)
S72_.BackgroundTransparency = 1
S72_.BorderSizePixel = 0
S72_.Size = UDim2.new(1, 0, 1, 0)
S72_.ZIndex = 0
S72_.Name = "DropShadowHolder"
S72_.Parent = S70_
S73_.Image = "rbxassetid://6015897843"
S73_.ImageColor3 = Color3.fromRGB(0, 0, 0)
S73_.ImageTransparency = 0.5
S73_.ScaleType = Enum.ScaleType.Slice
S73_.SliceCenter = Rect.new(49, 49, 450, 450)
S73_.AnchorPoint = Vector2.new(0.5, 0.5)
S73_.BackgroundTransparency = 1
S73_.BorderSizePixel = 0
S73_.Position = UDim2.new(0.5, 0, 0.5, 0)
S73_.Size = UDim2.new(1, 47, 1, 47)
S73_.ZIndex = 0
S73_.Name = "DropShadow"
S73_.Parent = S72_
S74_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S74_.BackgroundTransparency = 0.9990000128746033
S74_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S74_.BorderSizePixel = 0
S74_.Size = UDim2.new(1, 0, 0, 36)
S74_.Name = "Top"
S74_.Parent = S70_
S75_.Font = Enum.Font.GothamBold
S75_.Text = S66_.Title
S75_.TextColor3 = Color3.fromRGB(255, 255, 255)
S75_.TextSize = 14
S75_.TextXAlignment = Enum.TextXAlignment.Left
S75_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S75_.BackgroundTransparency = 0.9990000128746033
S75_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S75_.BorderSizePixel = 0
S75_.Size = UDim2.new(1, 0, 1, 0)
S75_.Parent = S74_
S75_.Position = UDim2.new(0, 10, 0, 0)
S76_.Color = Color3.fromRGB(255, 255, 255)
S76_.Thickness = 0.30000001192092896
S76_.Parent = S75_
S77_.Parent = S74_
S77_.CornerRadius = UDim.new(0, 5)
S78_.Font = Enum.Font.GothamBold
S78_.Text = S66_.Description
S78_.TextColor3 = S66_.Color
S78_.TextSize = 14
S78_.TextXAlignment = Enum.TextXAlignment.Left
S78_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S78_.BackgroundTransparency = 0.9990000128746033
S78_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S78_.BorderSizePixel = 0
S78_.Size = UDim2.new(1, 0, 1, 0)
S78_.Position = UDim2.new(0, S75_.TextBounds.X + 15, 0, 0)
S78_.Parent = S74_
S79_.Color = S66_.Color
S79_.Thickness = 0.4000000059604645
S79_.Parent = S78_
S80_.Font = Enum.Font.SourceSans
S80_.Text = ""
S80_.TextColor3 = Color3.fromRGB(0, 0, 0)
S80_.TextSize = 14
S80_.AnchorPoint = Vector2.new(1, 0.5)
S80_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S80_.BackgroundTransparency = 0.9990000128746033
S80_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S80_.BorderSizePixel = 0
S80_.Position = UDim2.new(1, -5, 0.5, 0)
S80_.Size = UDim2.new(0, 25, 0, 25)
S80_.Name = "Close"
S80_.Parent = S74_
S81_.Image = "rbxassetid://9886659671"
S81_.AnchorPoint = Vector2.new(0.5, 0.5)
S81_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S81_.BackgroundTransparency = 0.9990000128746033
S81_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S81_.BorderSizePixel = 0
S81_.Position = UDim2.new(0.49000001, 0, 0.5, 0)
S81_.Size = UDim2.new(1, -8, 1, -8)
S81_.Parent = S80_
S82_.Font = Enum.Font.GothamBold
S82_.TextColor3 = Color3.fromRGB(255, 255, 255)
S82_.TextSize = 13
S82_.Text = S66_.Content
S82_.TextXAlignment = Enum.TextXAlignment.Left
S82_.TextYAlignment = Enum.TextYAlignment.Top
S82_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S82_.BackgroundTransparency = 0.9990000128746033
S82_.TextColor3 = Color3.fromRGB(150.0000062584877, 150.0000062584877, 150.0000062584877)
S82_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S82_.BorderSizePixel = 0
S82_.Position = UDim2.new(0, 10, 0, 27)
S82_.Parent = S70_
S82_.Size = UDim2.new(1, -20, 0, 13)
S82_.Size = UDim2.new(1, -20, 0, 13 + (13 * (S82_.TextBounds.X // S82_.AbsoluteSize.X)))
S82_.TextWrapped = true
if S82_.AbsoluteSize.Y < 27 then
S69_.Size = UDim2.new(1, 0, 0, 65)
else
S69_.Size = UDim2.new(1, 0, 0, S82_.AbsoluteSize.Y + 40)
end
local S83_ = false
function S67_:Close()
if S83_ then
return false
end
S83_ = true
S2_:Create(
S70_, TweenInfo.new(tonumber(S66_.Time), Enum.EasingStyle.Back, Enum.EasingDirection.InOut), {
Position = UDim2.new(0, 400, 0, 0)
}):Play()
task.wait(tonumber(S66_.Time) / 1.2)
S69_:Destroy()
end
S80_.Activated:Connect(function()
S67_:Close()
end)
S2_:Create(
S70_, TweenInfo.new(tonumber(S66_.Time), Enum.EasingStyle.Back, Enum.EasingDirection.InOut), {
Position = UDim2.new(0, 0, 0, 0)
}):Play()
task.wait(tonumber(S66_.Delay))
S67_:Close()
end)
return S67_
end
function S9_:CreateWindow(S91_arg0)
local S92_ = S91_arg0 or {}
S92_.NameHub = S92_.NameHub or ""
S92_.Description = S92_.Description or ""
S92_.Color = S92_.Color or Color3.fromRGB(255, 0, 255)
S92_["Tab Width"] = S92_["Tab Width"] or 120
S92_["Size UI"] = S92_["Size UI"] or UDim2.fromOffset(550, 315)
local S93_ = {}
local S94_ = Instance.new("ScreenGui");
local S95_ = Instance.new("Frame");
local S96_ = Instance.new("ImageLabel");
local S97_ = Instance.new("Frame");
local S98_ = Instance.new("UICorner");
local S99_ = Instance.new("UIStroke");
local S100_ = Instance.new("Frame");
local S101_ = Instance.new("TextLabel");
local S102_ = Instance.new("UICorner");
local S103_ = Instance.new("TextLabel");
local S104_ = Instance.new("UIStroke");
local S105_ = Instance.new("TextButton");
local S106_ = Instance.new("ImageLabel");
local S107_ = Instance.new("TextButton");
local S108_ = Instance.new("ImageLabel");
local S109_ = Instance.new("TextButton");
local S110_ = Instance.new("ImageLabel");
local S111_ = Instance.new("Frame");
local S112_ = Instance.new("UICorner");
local S113_ = Instance.new("Frame");
local S114_ = Instance.new("UIStroke");
local S115_ = Instance.new("Frame");
local S116_ = Instance.new("UICorner");
local S117_ = Instance.new("TextLabel");
local S118_ = Instance.new("Frame");
local S119_ = Instance.new("Folder");
local S120_ = Instance.new("UIPageLayout");
S94_.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
S94_.Name = "SpeedHubXGui"
S94_.Parent = S4_:IsStudio() and S3_.PlayerGui or (gethui() or cloneref(game:GetService("CoreGui")) or game:GetService("CoreGui"))
S95_.BackgroundTransparency = 1
S95_.BorderSizePixel = 0
S95_.Size = UDim2.new(0, 455, 0, 350)
S95_.ZIndex = 0
S95_.Name = "DropShadowHolder"
S95_.Parent = S94_
S95_.Position = UDim2.new(0, (S94_.AbsoluteSize.X // 2 - S95_.Size.X.Offset // 2), 0, (S94_.AbsoluteSize.Y // 2 - S95_.Size.Y.Offset // 2))
S96_.Image = "rbxassetid://6015897843"
S96_.ImageColor3 = Color3.fromRGB(15, 15, 15)
S96_.ImageTransparency = 0.5
S96_.ScaleType = Enum.ScaleType.Slice
S96_.SliceCenter = Rect.new(49, 49, 450, 450)
S96_.AnchorPoint = Vector2.new(0.5, 0.5)
S96_.BackgroundTransparency = 1
S96_.BorderSizePixel = 0
S96_.Position = UDim2.new(0.5, 0, 0.5, 0)
S96_.Size = S92_["Size UI"]
S96_.ZIndex = 0
S96_.Name = "DropShadow"
S96_.Parent = S95_
S97_.AnchorPoint = Vector2.new(0.5, 0.5)
S97_.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
S97_.BackgroundTransparency = 0.1
S97_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S97_.BorderSizePixel = 0
S97_.Position = UDim2.new(0.5, 0, 0.5, 0)
S97_.Size = S92_["Size UI"]
S97_.Name = "Main"
S97_.Parent = S96_
S98_.Parent = S97_
S99_.Color = Color3.fromRGB(50, 50, 50)
S99_.Thickness = 1.600000023841858
S99_.Parent = S97_
S100_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S100_.BackgroundTransparency = 0.9990000128746033
S100_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S100_.BorderSizePixel = 0
S100_.Size = UDim2.new(1, 0, 0, 38)
S100_.Name = "Top"
S100_.Parent = S97_
S101_.Font = Enum.Font.GothamBold
S101_.Text = S92_.NameHub
S101_.TextColor3 = Color3.fromRGB(255, 255, 255)
S101_.TextSize = 14
S101_.TextXAlignment = Enum.TextXAlignment.Left
S101_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S101_.BackgroundTransparency = 0.9990000128746033
S101_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S101_.BorderSizePixel = 0
S101_.Size = UDim2.new(1, -100, 1, 0)
S101_.Position = UDim2.new(0, 10, 0, 0)
S101_.Parent = S100_
S102_.Parent = S100_
S103_.Font = Enum.Font.GothamBold
S103_.Text = S92_.Description
S103_.TextColor3 = S92_.Color
S103_.TextSize = 14
S103_.TextXAlignment = Enum.TextXAlignment.Left
S103_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S103_.BackgroundTransparency = 0.9990000128746033
S103_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S103_.BorderSizePixel = 0
S103_.Size = UDim2.new(1, - (S101_.TextBounds.X + 104), 1, 0)
S103_.Position = UDim2.new(0, S101_.TextBounds.X + 15, 0, 0)
S103_.Parent = S100_
S104_.Color = S92_.Color
S104_.Thickness = 0.4000000059604645
S104_.Parent = S103_
S105_.Font = Enum.Font.SourceSans
S105_.Text = ""
S105_.TextColor3 = Color3.fromRGB(0, 0, 0)
S105_.TextSize = 14
S105_.AnchorPoint = Vector2.new(1, 0.5)
S105_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S105_.BackgroundTransparency = 0.9990000128746033
S105_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S105_.BorderSizePixel = 0
S105_.Position = UDim2.new(1, -42, 0.5, 0)
S105_.Size = UDim2.new(0, 25, 0, 25)
S105_.Name = "MaxRestore"
S105_.Parent = S100_
S106_.Image = "rbxassetid://9886659406"
S106_.AnchorPoint = Vector2.new(0.5, 0.5)
S106_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S106_.BackgroundTransparency = 0.9990000128746033
S106_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S106_.BorderSizePixel = 0
S106_.Position = UDim2.new(0.5, 0, 0.5, 0)
S106_.Size = UDim2.new(1, -8, 1, -8)
S106_.Parent = S105_
S107_.Font = Enum.Font.SourceSans
S107_.Text = ""
S107_.TextColor3 = Color3.fromRGB(0, 0, 0)
S107_.TextSize = 14
S107_.AnchorPoint = Vector2.new(1, 0.5)
S107_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S107_.BackgroundTransparency = 0.9990000128746033
S107_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S107_.BorderSizePixel = 0
S107_.Position = UDim2.new(1, -8, 0.5, 0)
S107_.Size = UDim2.new(0, 25, 0, 25)
S107_.Name = "Close"
S107_.Parent = S100_
S108_.Image = "rbxassetid://9886659671"
S108_.AnchorPoint = Vector2.new(0.5, 0.5)
S108_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S108_.BackgroundTransparency = 0.9990000128746033
S108_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S108_.BorderSizePixel = 0
S108_.Position = UDim2.new(0.49, 0, 0.5, 0)
S108_.Size = UDim2.new(1, -8, 1, -8)
S108_.Parent = S107_
S109_.Font = Enum.Font.SourceSans
S109_.Text = ""
S109_.TextColor3 = Color3.fromRGB(0, 0, 0)
S109_.TextSize = 14
S109_.AnchorPoint = Vector2.new(1, 0.5)
S109_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S109_.BackgroundTransparency = 0.9990000128746033
S109_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S109_.BorderSizePixel = 0
S109_.Position = UDim2.new(1, -78, 0.5, 0)
S109_.Size = UDim2.new(0, 25, 0, 25)
S109_.Name = "Min"
S109_.Parent = S100_
S110_.Image = "rbxassetid://9886659276"
S110_.AnchorPoint = Vector2.new(0.5, 0.5)
S110_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S110_.BackgroundTransparency = 0.9990000128746033
S110_.ImageTransparency = 0.2
S110_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S110_.BorderSizePixel = 0
S110_.Position = UDim2.new(0.5, 0, 0.5, 0)
S110_.Size = UDim2.new(1, -9, 1, -9)
S110_.Parent = S109_
S111_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S111_.BackgroundTransparency = 0.9990000128746033
S111_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S111_.BorderSizePixel = 0
S111_.Position = UDim2.new(0, 9, 0, 50)
S111_.Size = UDim2.new(0, S92_["Tab Width"], 1, -59)
S111_.Name = "LayersTab"
S111_.Parent = S97_
S112_.CornerRadius = UDim.new(0, 2)
S112_.Parent = S111_
S113_.AnchorPoint = Vector2.new(0.5, 0)
S113_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S113_.BackgroundTransparency = 0.85
S113_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S113_.BorderSizePixel = 0
S113_.Position = UDim2.new(0.5, 0, 0, 38)
S113_.Size = UDim2.new(1, 0, 0, 1)
S113_.Name = "DecideFrame"
S113_.Parent = S97_
S115_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S115_.BackgroundTransparency = 0.9990000128746033
S115_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S115_.BorderSizePixel = 0
S115_.Position = UDim2.new(0, S92_["Tab Width"] + 18, 0, 50)
S115_.Size = UDim2.new(1, - (S92_["Tab Width"] + 9 + 18), 1, -59)
S115_.Name = "Layers"
S115_.Parent = S97_
S116_.CornerRadius = UDim.new(0, 2)
S116_.Parent = S115_
S117_.Font = Enum.Font.GothamBold
S117_.Text = ""
S117_.TextColor3 = Color3.fromRGB(255, 255, 255)
S117_.TextSize = 24
S117_.TextWrapped = true
S117_.TextXAlignment = Enum.TextXAlignment.Left
S117_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S117_.BackgroundTransparency = 0.9990000128746033
S117_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S117_.BorderSizePixel = 0
S117_.Size = UDim2.new(1, 0, 0, 30)
S117_.Name = "NameTab"
S117_.Parent = S115_
S118_.AnchorPoint = Vector2.new(0, 1)
S118_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S118_.BackgroundTransparency = 0.9990000128746033
S118_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S118_.BorderSizePixel = 0
S118_.ClipsDescendants = true
S118_.Position = UDim2.new(0, 0, 1, 0)
S118_.Size = UDim2.new(1, 0, 1, -33)
S118_.Name = "LayersReal"
S118_.Parent = S115_
S119_.Name = "LayersFolder"
S119_.Parent = S118_
S120_.SortOrder = Enum.SortOrder.LayoutOrder
S120_.Name = "LayersPageLayout"
S120_.Parent = S119_
S120_.TweenTime = 0.5
S120_.EasingDirection = Enum.EasingDirection.InOut
S120_.EasingStyle = Enum.EasingStyle.Quad
--// Layer Tabs
local S121_ = Instance.new("ScrollingFrame");
local S122_ = Instance.new("UIListLayout");
S121_.CanvasSize = UDim2.new(0, 0, 1.10000002, 0)
S121_.ScrollBarImageColor3 = Color3.fromRGB(0, 0, 0)
S121_.ScrollBarThickness = 0
S121_.Active = true
S121_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S121_.BackgroundTransparency = 0.9990000128746033
S121_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S121_.BorderSizePixel = 0
S121_.Size = UDim2.new(1, 0, 1, -10)
S121_.Name = "ScrollTab"
S121_.Parent = S111_
S122_.Padding = UDim.new(0, 3)
S122_.SortOrder = Enum.SortOrder.LayoutOrder
S122_.Parent = S121_
local function S123_func()
local S140_ = 0
for S141_forvar0, S142_forvar1 in S121_:GetChildren() do
if S142_forvar1.Name ~= "UIListLayout" then
S140_ = S140_ + 3 + S142_forvar1.Size.Y.Offset
end
end
S121_.CanvasSize = UDim2.new(0, 0, 0, S140_)
end
S121_.ChildAdded:Connect(S123_func)
S121_.ChildRemoved:Connect(S123_func)
function S93_:DestroyGui()
if S94_ then
S94_:Destroy()
end
end
local S124_ = S95_.Position
local S125_ = S95_.Size
S105_.Activated:Connect(function()
CircleClick(S105_, S3_:GetMouse().X, S3_:GetMouse().Y)
if S106_.Image == "rbxassetid://9886659406" then
S106_.Image = "rbxassetid://9886659001"
S124_ = S95_.Position
S125_ = S95_.Size
S2_:Create(S95_, TweenInfo.new(0.2), {
Position = UDim2.new(0, 0, 0, 0)
}):Play()
S2_:Create(S95_, TweenInfo.new(0.2), {
Size = UDim2.new(1, 0, 1, 0)
}):Play()
else
S106_.Image = "rbxassetid://9886659406"
S2_:Create(S95_, TweenInfo.new(0.2), {
Position = S124_
}):Play()
S2_:Create(S95_, TweenInfo.new(0.2), {
Size = S125_
}):Play()
end
end)
S109_.Activated:Connect(function()
CircleClick(S109_, S3_:GetMouse().X, S3_:GetMouse().Y)
S95_.Visible = false
if not S7_.Visible then
S7_.Visible = true
end
end)
S7_.Activated:Connect(function()
S95_.Visible = true
if S7_.Visible then
S7_.Visible = false
end
end)
S107_.Activated:Connect(function()
CircleClick(S107_, S3_:GetMouse().X, S3_:GetMouse().Y)
S93_:DestroyGui()
if not S9_.Unloaded then
S9_.Unloaded = true
end
end)
S95_.Size = UDim2.new(0, 115 + S101_.TextBounds.X + 1 + S103_.TextBounds.X, 0, 350)
S8_func(S100_, S95_)
--// Blur
local S126_ = Instance.new("Frame");
local S127_ = Instance.new("Frame");
local S128_ = Instance.new("ImageLabel");
local S129_ = Instance.new("UICorner");
local S130_ = Instance.new("TextButton");
S126_.AnchorPoint = Vector2.new(1, 1)
S126_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S126_.BackgroundTransparency = 0.999
S126_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S126_.BorderSizePixel = 0
S126_.ClipsDescendants = true
S126_.Position = UDim2.new(1, 8, 1, 8)
S126_.Size = UDim2.new(1, 154, 1, 54)
S126_.Visible = false
S126_.Name = "MoreBlur"
S126_.Parent = S115_
S127_.BackgroundTransparency = 1
S127_.BorderSizePixel = 0
S127_.Size = UDim2.new(1, 0, 1, 0)
S127_.ZIndex = 0
S127_.Name = "DropShadowHolder"
S127_.Parent = S126_
S128_.Image = "rbxassetid://6015897843"
S128_.ImageColor3 = Color3.fromRGB(0, 0, 0)
S128_.ImageTransparency = 0.5
S128_.ScaleType = Enum.ScaleType.Slice
S128_.SliceCenter = Rect.new(49, 49, 450, 450)
S128_.AnchorPoint = Vector2.new(0.5, 0.5)
S128_.BackgroundTransparency = 1
S128_.BorderSizePixel = 0
S128_.Position = UDim2.new(0.5, 0, 0.5, 0)
S128_.Size = UDim2.new(1, 35, 1, 35)
S128_.ZIndex = 0
S128_.Name = "DropShadow"
S128_.Parent = S127_
S129_.Parent = S126_
S130_.Font = Enum.Font.SourceSans
S130_.Text = ""
S130_.TextColor3 = Color3.fromRGB(0, 0, 0)
S130_.TextSize = 14
S130_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S130_.BackgroundTransparency = 0.999
S130_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S130_.BorderSizePixel = 0
S130_.Size = UDim2.new(1, 0, 1, 0)
S130_.Name = "ConnectButton"
S130_.Parent = S126_
local S131_ = Instance.new("Frame");
local S132_ = Instance.new("UICorner");
local S133_ = Instance.new("UIStroke");
local S134_ = Instance.new("Frame");
local S135_ = Instance.new("Folder");
local S136_ = Instance.new("UIPageLayout");
S131_.AnchorPoint = Vector2.new(1, 0.5)
S131_.BackgroundColor3 = Color3.fromRGB(30.00000011175871, 30.00000011175871, 30.00000011175871)
S131_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S131_.BorderSizePixel = 0
S131_.LayoutOrder = 1
S131_.Position = UDim2.new(1, 172, 0.5, 0)
S131_.Size = UDim2.new(0, 160, 1, -16)
S131_.Name = "DropdownSelect"
S131_.ClipsDescendants = true
S131_.Parent = S126_
S130_.Activated:Connect(function()
if S126_.Visible then
S2_:Create(S126_, TweenInfo.new(0.2), {
BackgroundTransparency = 0.999
}):Play()
S2_:Create(S131_, TweenInfo.new(0.2), {
Position = UDim2.new(1, 172, 0.5, 0)
}):Play()
task.wait(0.3)
S126_.Visible = false
end
end)
S132_.CornerRadius = UDim.new(0, 3)
S132_.Parent = S131_
S133_.Color = Color3.fromRGB(255, 255, 255)
S133_.Thickness = 2.5
S133_.Transparency = 0.8
S133_.Parent = S131_
S134_.AnchorPoint = Vector2.new(0.5, 0.5)
S134_.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
S134_.BackgroundTransparency = 0.9990000128746033
S134_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S134_.BorderSizePixel = 0
S134_.LayoutOrder = 1
S134_.Position = UDim2.new(0.5, 0, 0.5, 0)
S134_.Size = UDim2.new(1, -10, 1, -10)
S134_.Name = "DropdownSelectReal"
S134_.Parent = S131_
S135_.Name = "DropdownFolder"
S135_.Parent = S134_
S136_.EasingDirection = Enum.EasingDirection.InOut
S136_.EasingStyle = Enum.EasingStyle.Quad
S136_.TweenTime = 0.009999999776482582
S136_.SortOrder = Enum.SortOrder.LayoutOrder
S136_.Archivable = false
S136_.Name = "DropPageLayout"
S136_.Parent = S135_
--// Tabs
local S137_ = {}
local S138_ = 0
local S139_ = 0
function S137_:AddTab(S143_arg0)
local S144_ = S143_arg0 or {}
S144_.Name = S144_.Name or "Tab"
S144_.Icon = S144_.Icon or ""
local S145_ = Instance.new("ScrollingFrame");
local S146_ = Instance.new("UIListLayout");
S145_.ScrollBarImageColor3 = Color3.fromRGB(80.00000283122063, 80.00000283122063, 80.00000283122063)
S145_.ScrollBarThickness = 0
S145_.Active = true
S145_.LayoutOrder = S138_
S145_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S145_.BackgroundTransparency = 0.9990000128746033
S145_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S145_.BorderSizePixel = 0
S145_.Size = UDim2.new(1, 0, 1, 0)
S145_.Name = "ScrolLayers"
S145_.Parent = S119_
S146_.Padding = UDim.new(0, 3)
S146_.SortOrder = Enum.SortOrder.LayoutOrder
S146_.Parent = S145_
local S147_ = Instance.new("Frame");
local S148_ = Instance.new("UICorner");
local S149_ = Instance.new("TextButton");
local S150_ = Instance.new("TextLabel")
local S151_ = Instance.new("ImageLabel");
local S152_ = Instance.new("UIStroke");
local S153_ = Instance.new("UICorner");
S147_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
if S138_ == 0 then
S147_.BackgroundTransparency = 0.9200000166893005
else
S147_.BackgroundTransparency = 0.9990000128746033
end
S147_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S147_.BorderSizePixel = 0
S147_.LayoutOrder = S138_
S147_.Size = UDim2.new(1, 0, 0, 30)
S147_.Name = "Tab"
S147_.Parent = S121_
S148_.CornerRadius = UDim.new(0, 4)
S148_.Parent = S147_
S149_.Font = Enum.Font.GothamBold
S149_.Text = ""
S149_.TextColor3 = Color3.fromRGB(255, 255, 255)
S149_.TextSize = 13
S149_.TextXAlignment = Enum.TextXAlignment.Left
S149_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S149_.BackgroundTransparency = 0.9990000128746033
S149_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S149_.BorderSizePixel = 0
S149_.Size = UDim2.new(1, 0, 1, 0)
S149_.Name = "TabButton"
S149_.Parent = S147_
S150_.Font = Enum.Font.GothamBold
S150_.Text = S144_.Name
S150_.TextColor3 = Color3.fromRGB(255, 255, 255)
S150_.TextSize = 13
S150_.TextXAlignment = Enum.TextXAlignment.Left
S150_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S150_.BackgroundTransparency = 0.9990000128746033
S150_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S150_.BorderSizePixel = 0
S150_.Size = UDim2.new(1, 0, 1, 0)
S150_.Position = UDim2.new(0, 30, 0, 0)
S150_.Name = "TabName"
S150_.Parent = S147_
S151_.Image = S144_.Icon
S151_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S151_.BackgroundTransparency = 0.9990000128746033
S151_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S151_.BorderSizePixel = 0
S151_.Position = UDim2.new(0, 9, 0, 7)
S151_.Size = UDim2.new(0, 16, 0, 16)
S151_.Name = "FeatureImg"
S151_.Parent = S147_
if S138_ == 0 then
S120_:JumpToIndex(0)
S117_.Text = S144_.Name
local S156_ = Instance.new("Frame");
S156_.BackgroundColor3 = S92_.Color
S156_.BorderColor3 = Color3.fromRGB(0, 0, 0)
S156_.BorderSizePixel = 0
S156_.Position = UDim2.new(0, 2, 0, 9)
S156_.Size = UDim2.new(0, 1, 0, 12)
S156_.Name = "ChooseFrame"
S156_.Parent = S147_
S152_.Color = S92_.Color
S152_.Thickness = 1.600000023841858
S152_.Parent = S156_