-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoogol
More file actions
1925 lines (1737 loc) · 61.9 KB
/
Googol
File metadata and controls
1925 lines (1737 loc) · 61.9 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 Googol = Instance.new("ScreenGui")
local Notification = Instance.new("Frame")
local title = Instance.new("TextLabel")
local Description = Instance.new("TextLabel")
local Frame = Instance.new("Frame")
local UICorner = Instance.new("UICorner")
local DropShadowHolder = Instance.new("Frame")
local DropShadow = Instance.new("ImageLabel")
local MainGUI = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local Frame_2 = Instance.new("Frame")
local GN = Instance.new("TextLabel")
local Frame_3 = Instance.new("Frame")
local DropShadowHolder_2 = Instance.new("Frame")
local DropShadow_2 = Instance.new("ImageLabel")
local UICorner_2 = Instance.new("UICorner")
local Tabs = Instance.new("Frame")
local UICorner_3 = Instance.new("UICorner")
local Home = Instance.new("ImageButton")
local BackofHome = Instance.new("Frame")
local UICorner_4 = Instance.new("UICorner")
local BackofScript = Instance.new("Frame")
local UICorner_5 = Instance.new("UICorner")
local Scripts = Instance.new("ImageButton")
local Configuation = Instance.new("ImageButton")
local BackofConfiguation = Instance.new("Frame")
local UICorner_6 = Instance.new("UICorner")
local UISUCKSONROBLOX = Instance.new("Frame")
local UICorner_7 = Instance.new("UICorner")
local Scripts_2 = Instance.new("Frame")
local RJ = Instance.new("TextButton")
local F = Instance.new("TextButton")
local UF = Instance.new("TextButton")
local MUI = Instance.new("TextButton")
local MUV = Instance.new("TextButton")
local S = Instance.new("TextButton")
local US = Instance.new("TextButton")
local Float = Instance.new("TextButton")
local UnFloat = Instance.new("TextButton")
local Goto = Instance.new("TextBox")
local Bang = Instance.new("TextBox")
local UB = Instance.new("TextButton")
local Home_2 = Instance.new("Frame")
local ImageLabel = Instance.new("ImageLabel")
local UICorner_8 = Instance.new("UICorner")
local Welcome = Instance.new("TextLabel")
local Whocarees = Instance.new("TextLabel")
local RJ_2 = Instance.new("TextButton")
--Properties:
Googol.Name = "Googol"
Googol.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
Googol.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Notification.Name = "Notification"
Notification.Parent = Googol
Notification.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
Notification.BorderColor3 = Color3.fromRGB(0, 0, 0)
Notification.BorderSizePixel = 0
Notification.Position = UDim2.new(0.0219999999, 0, -0.5, 0)
Notification.Size = UDim2.new(0, 233, 0, 131)
title.Name = "title"
title.Parent = Notification
title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
title.BackgroundTransparency = 1.000
title.BorderColor3 = Color3.fromRGB(0, 0, 0)
title.BorderSizePixel = 0
title.Position = UDim2.new(0.0128755365, 0, -1.3977517e-06, 0)
title.Size = UDim2.new(0, 227, 0, 31)
title.Font = Enum.Font.Gotham
title.Text = "Welcome Tropxz."
title.TextColor3 = Color3.fromRGB(255, 255, 255)
title.TextSize = 14.000
title.TextWrapped = true
title.TextXAlignment = Enum.TextXAlignment.Left
Description.Name = "Description"
Description.Parent = Notification
Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Description.BackgroundTransparency = 1.000
Description.BorderColor3 = Color3.fromRGB(0, 0, 0)
Description.BorderSizePixel = 0
Description.Position = UDim2.new(0.0257510729, 0, 0.305343509, 0)
Description.Size = UDim2.new(0, 227, 0, 91)
Description.Font = Enum.Font.Gotham
Description.Text = "Hello boss, Please let me out of your basement I been suffering :sob:"
Description.TextColor3 = Color3.fromRGB(255, 255, 255)
Description.TextSize = 14.000
Description.TextWrapped = true
Description.TextXAlignment = Enum.TextXAlignment.Left
Description.TextYAlignment = Enum.TextYAlignment.Top
Frame.Parent = Notification
Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame.BorderSizePixel = 0
Frame.Position = UDim2.new(-3.27441825e-08, 0, 0.229007632, 0)
Frame.Size = UDim2.new(0, 232, 0, 1)
UICorner.Parent = Notification
DropShadowHolder.Name = "DropShadowHolder"
DropShadowHolder.Parent = Notification
DropShadowHolder.BackgroundTransparency = 1.000
DropShadowHolder.BorderSizePixel = 0
DropShadowHolder.Size = UDim2.new(1, 0, 1, 0)
DropShadowHolder.ZIndex = 0
DropShadow.Name = "DropShadow"
DropShadow.Parent = DropShadowHolder
DropShadow.AnchorPoint = Vector2.new(0.5, 0.5)
DropShadow.BackgroundTransparency = 1.000
DropShadow.BorderSizePixel = 0
DropShadow.Position = UDim2.new(0.5, 0, 0.5, 0)
DropShadow.Size = UDim2.new(1, 47, 1, 47)
DropShadow.ZIndex = 0
DropShadow.Image = "rbxassetid://6014261993"
DropShadow.ImageColor3 = Color3.fromRGB(0, 0, 0)
DropShadow.ImageTransparency = 0.500
DropShadow.ScaleType = Enum.ScaleType.Slice
DropShadow.SliceCenter = Rect.new(49, 49, 450, 450)
MainGUI.Name = "Main GUI"
MainGUI.Parent = Googol
MainGUI.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
MainGUI.BorderColor3 = Color3.fromRGB(0, 0, 0)
MainGUI.BorderSizePixel = 0
MainGUI.Position = UDim2.new(0.017224893, 429, 0.252693176, 8)
MainGUI.Size = UDim2.new(0, 456, 0, 473)
Title.Name = "Title"
Title.Parent = MainGUI
Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Title.BackgroundTransparency = 1.000
Title.BorderColor3 = Color3.fromRGB(0, 0, 0)
Title.BorderSizePixel = 0
Title.Position = UDim2.new(0.0241228063, 0, 0, 0)
Title.Size = UDim2.new(0, 445, 0, 33)
Title.Font = Enum.Font.SourceSans
Title.Text = "Googol"
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 25.000
Title.TextWrapped = true
Title.TextXAlignment = Enum.TextXAlignment.Left
Frame_2.Parent = MainGUI
Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_2.BorderSizePixel = 0
Frame_2.Position = UDim2.new(0, 0, 0.116279073, 0)
Frame_2.Size = UDim2.new(0, 455, 0, 1)
GN.Name = "GN"
GN.Parent = MainGUI
GN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
GN.BackgroundTransparency = 1.000
GN.BorderColor3 = Color3.fromRGB(0, 0, 0)
GN.BorderSizePixel = 0
GN.Position = UDim2.new(0.0241228063, 0, 0.05496829, 0)
GN.Size = UDim2.new(0, 445, 0, 16)
GN.Font = Enum.Font.SourceSans
GN.Text = "Game loading..."
GN.TextColor3 = Color3.fromRGB(200, 200, 200)
GN.TextSize = 15.000
GN.TextWrapped = true
GN.TextXAlignment = Enum.TextXAlignment.Left
Frame_3.Parent = MainGUI
Frame_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Frame_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_3.BorderSizePixel = 0
Frame_3.Position = UDim2.new(0.254385978, 0, 0.118393235, 0)
Frame_3.Size = UDim2.new(0, 1, 0, 416)
DropShadowHolder_2.Name = "DropShadowHolder"
DropShadowHolder_2.Parent = MainGUI
DropShadowHolder_2.BackgroundTransparency = 1.000
DropShadowHolder_2.BorderSizePixel = 0
DropShadowHolder_2.Size = UDim2.new(1, 0, 1, 0)
DropShadowHolder_2.ZIndex = 0
DropShadow_2.Name = "DropShadow"
DropShadow_2.Parent = DropShadowHolder_2
DropShadow_2.AnchorPoint = Vector2.new(0.5, 0.5)
DropShadow_2.BackgroundTransparency = 1.000
DropShadow_2.BorderSizePixel = 0
DropShadow_2.Position = UDim2.new(0.505482435, 0, 0.5, 0)
DropShadow_2.Size = UDim2.new(1.01096487, 47, 1, 47)
DropShadow_2.ZIndex = 0
DropShadow_2.Image = "rbxassetid://6014261993"
DropShadow_2.ImageColor3 = Color3.fromRGB(0, 0, 0)
DropShadow_2.ImageTransparency = 0.500
DropShadow_2.ScaleType = Enum.ScaleType.Slice
DropShadow_2.SliceCenter = Rect.new(49, 49, 450, 450)
UICorner_2.Parent = MainGUI
Tabs.Name = "Tabs"
Tabs.Parent = MainGUI
Tabs.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
Tabs.BorderColor3 = Color3.fromRGB(0, 0, 0)
Tabs.BorderSizePixel = 0
Tabs.Position = UDim2.new(0.00444003986, 0, 0.118393235, 0)
Tabs.Size = UDim2.new(0, 112, 0, 416)
UICorner_3.Parent = Tabs
Home.Name = "Home"
Home.Parent = Tabs
Home.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Home.BackgroundTransparency = 1.000
Home.BorderColor3 = Color3.fromRGB(0, 0, 0)
Home.BorderSizePixel = 0
Home.Position = UDim2.new(0.303571522, 0, 0.0360576995, 0)
Home.Size = UDim2.new(0, 42, 0, 42)
Home.ZIndex = 3
Home.Modal = true
Home.Image = "rbxassetid://11433532654"
BackofHome.Name = "BackofHome"
BackofHome.Parent = Tabs
BackofHome.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
BackofHome.BorderColor3 = Color3.fromRGB(0, 0, 0)
BackofHome.BorderSizePixel = 0
BackofHome.Position = UDim2.new(0.235118866, 0, 0.021291133, 0)
BackofHome.Size = UDim2.new(0, 58, 0, 56)
UICorner_4.Parent = BackofHome
BackofScript.Name = "BackofScript"
BackofScript.Parent = Tabs
BackofScript.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
BackofScript.BorderColor3 = Color3.fromRGB(0, 0, 0)
BackofScript.BorderSizePixel = 0
BackofScript.Position = UDim2.new(0.235118866, 0, 0.194368064, 0)
BackofScript.Size = UDim2.new(0, 58, 0, 56)
UICorner_5.Parent = BackofScript
Scripts.Name = "Scripts"
Scripts.Parent = Tabs
Scripts.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Scripts.BackgroundTransparency = 1.000
Scripts.BorderColor3 = Color3.fromRGB(0, 0, 0)
Scripts.BorderSizePixel = 0
Scripts.Position = UDim2.new(0.303571522, 0, 0.209134623, 0)
Scripts.Size = UDim2.new(0, 42, 0, 42)
Scripts.ZIndex = 3
Scripts.Modal = true
Scripts.Image = "rbxassetid://11419706143"
Configuation.Name = "Configuation"
Configuation.Parent = Tabs
Configuation.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Configuation.BackgroundTransparency = 1.000
Configuation.BorderColor3 = Color3.fromRGB(0, 0, 0)
Configuation.BorderSizePixel = 0
Configuation.Position = UDim2.new(0.303571522, 0, 0.382211566, 0)
Configuation.Size = UDim2.new(0, 42, 0, 42)
Configuation.ZIndex = 3
Configuation.Modal = true
Configuation.Image = "rbxassetid://12966842909"
BackofConfiguation.Name = "BackofConfiguation"
BackofConfiguation.Parent = Tabs
BackofConfiguation.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
BackofConfiguation.BorderColor3 = Color3.fromRGB(0, 0, 0)
BackofConfiguation.BorderSizePixel = 0
BackofConfiguation.Position = UDim2.new(0.235118866, 0, 0.367444992, 0)
BackofConfiguation.Size = UDim2.new(0, 58, 0, 56)
UICorner_6.Parent = BackofConfiguation
UISUCKSONROBLOX.Name = "UISUCKSONROBLOX!!!"
UISUCKSONROBLOX.Parent = MainGUI
UISUCKSONROBLOX.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
UISUCKSONROBLOX.BorderColor3 = Color3.fromRGB(0, 0, 0)
UISUCKSONROBLOX.BorderSizePixel = 0
UISUCKSONROBLOX.Position = UDim2.new(0, 0, 0.983086705, 0)
UISUCKSONROBLOX.Size = UDim2.new(0, 116, 0, 7)
UICorner_7.Parent = UISUCKSONROBLOX
Scripts_2.Name = "Scripts"
Scripts_2.Parent = MainGUI
Scripts_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Scripts_2.BackgroundTransparency = 1.000
Scripts_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
Scripts_2.BorderSizePixel = 0
Scripts_2.Position = UDim2.new(0.256579161, 0, 0.118393235, 0)
Scripts_2.Size = UDim2.new(0, 338, 0, 416)
RJ.Name = "RJ"
RJ.Parent = Scripts_2
RJ.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
RJ.BorderColor3 = Color3.fromRGB(0, 0, 0)
RJ.BorderSizePixel = 0
RJ.Position = UDim2.new(0.0621301755, 0, 0.0192307681, 0)
RJ.Size = UDim2.new(0, 62, 0, 49)
RJ.Font = Enum.Font.SourceSans
RJ.Text = "Rejoin"
RJ.TextColor3 = Color3.fromRGB(255, 255, 255)
RJ.TextScaled = true
RJ.TextSize = 14.000
RJ.TextWrapped = true
F.Name = "F"
F.Parent = Scripts_2
F.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
F.BorderColor3 = Color3.fromRGB(0, 0, 0)
F.BorderSizePixel = 0
F.Position = UDim2.new(0.278106511, 0, 0.019230783, 0)
F.Size = UDim2.new(0, 62, 0, 49)
F.Font = Enum.Font.SourceSans
F.Text = "Fly"
F.TextColor3 = Color3.fromRGB(255, 255, 255)
F.TextScaled = true
F.TextSize = 14.000
F.TextWrapped = true
UF.Name = "UF"
UF.Parent = Scripts_2
UF.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
UF.BorderColor3 = Color3.fromRGB(0, 0, 0)
UF.BorderSizePixel = 0
UF.Position = UDim2.new(0.494082838, 0, 0.019230783, 0)
UF.Size = UDim2.new(0, 62, 0, 49)
UF.Font = Enum.Font.SourceSans
UF.Text = "UnFly"
UF.TextColor3 = Color3.fromRGB(255, 255, 255)
UF.TextScaled = true
UF.TextSize = 14.000
UF.TextWrapped = true
MUI.Name = "MUI"
MUI.Parent = Scripts_2
MUI.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
MUI.BorderColor3 = Color3.fromRGB(0, 0, 0)
MUI.BorderSizePixel = 0
MUI.Position = UDim2.new(0.704142034, 0, 0.019230783, 0)
MUI.Size = UDim2.new(0, 62, 0, 49)
MUI.Font = Enum.Font.SourceSans
MUI.Text = "Make UIs Invis"
MUI.TextColor3 = Color3.fromRGB(255, 255, 255)
MUI.TextScaled = true
MUI.TextSize = 14.000
MUI.TextWrapped = true
MUV.Name = "MUV"
MUV.Parent = Scripts_2
MUV.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
MUV.BorderColor3 = Color3.fromRGB(0, 0, 0)
MUV.BorderSizePixel = 0
MUV.Position = UDim2.new(0.0621301904, 0, 0.146634609, 0)
MUV.Size = UDim2.new(0, 62, 0, 49)
MUV.Font = Enum.Font.SourceSans
MUV.Text = "Make UIs Visible"
MUV.TextColor3 = Color3.fromRGB(255, 255, 255)
MUV.TextScaled = true
MUV.TextSize = 14.000
MUV.TextWrapped = true
S.Name = "S"
S.Parent = Scripts_2
S.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
S.BorderColor3 = Color3.fromRGB(0, 0, 0)
S.BorderSizePixel = 0
S.Position = UDim2.new(0.269230783, 0, 0.146634609, 0)
S.Size = UDim2.new(0, 62, 0, 49)
S.Font = Enum.Font.SourceSans
S.Text = "Swim"
S.TextColor3 = Color3.fromRGB(255, 255, 255)
S.TextScaled = true
S.TextSize = 14.000
S.TextWrapped = true
US.Name = "US"
US.Parent = Scripts_2
US.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
US.BorderColor3 = Color3.fromRGB(0, 0, 0)
US.BorderSizePixel = 0
US.Position = UDim2.new(0.494082838, 0, 0.146634609, 0)
US.Size = UDim2.new(0, 62, 0, 49)
US.Font = Enum.Font.SourceSans
US.Text = "UnSWim"
US.TextColor3 = Color3.fromRGB(255, 255, 255)
US.TextScaled = true
US.TextSize = 14.000
US.TextWrapped = true
Float.Name = "Float"
Float.Parent = Scripts_2
Float.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
Float.BorderColor3 = Color3.fromRGB(0, 0, 0)
Float.BorderSizePixel = 0
Float.Position = UDim2.new(0.704142034, 0, 0.146634609, 0)
Float.Size = UDim2.new(0, 62, 0, 49)
Float.Font = Enum.Font.SourceSans
Float.Text = "Float"
Float.TextColor3 = Color3.fromRGB(255, 255, 255)
Float.TextScaled = true
Float.TextSize = 14.000
Float.TextWrapped = true
UnFloat.Name = "UnFloat"
UnFloat.Parent = Scripts_2
UnFloat.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
UnFloat.BorderColor3 = Color3.fromRGB(0, 0, 0)
UnFloat.BorderSizePixel = 0
UnFloat.Position = UDim2.new(0.0621302128, 0, 0.290865362, 0)
UnFloat.Size = UDim2.new(0, 62, 0, 49)
UnFloat.Font = Enum.Font.SourceSans
UnFloat.Text = "UnFloat"
UnFloat.TextColor3 = Color3.fromRGB(255, 255, 255)
UnFloat.TextScaled = true
UnFloat.TextSize = 14.000
UnFloat.TextWrapped = true
Goto.Name = "Goto"
Goto.Parent = Scripts_2
Goto.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
Goto.BorderColor3 = Color3.fromRGB(0, 0, 0)
Goto.BorderSizePixel = 0
Goto.Position = UDim2.new(0.278106511, 0, 0.290865391, 0)
Goto.Size = UDim2.new(0, 62, 0, 49)
Goto.Font = Enum.Font.SourceSans
Goto.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
Goto.PlaceholderText = "Goto: Player name here"
Goto.Text = ""
Goto.TextColor3 = Color3.fromRGB(255, 255, 255)
Goto.TextScaled = true
Goto.TextSize = 14.000
Goto.TextWrapped = true
Bang.Name = "Bang"
Bang.Parent = Scripts_2
Bang.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
Bang.BorderColor3 = Color3.fromRGB(0, 0, 0)
Bang.BorderSizePixel = 0
Bang.Position = UDim2.new(0.494082838, 0, 0.290865391, 0)
Bang.Size = UDim2.new(0, 62, 0, 49)
Bang.Font = Enum.Font.SourceSans
Bang.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
Bang.PlaceholderText = "Bang: Player name here"
Bang.Text = ""
Bang.TextColor3 = Color3.fromRGB(255, 255, 255)
Bang.TextScaled = true
Bang.TextSize = 14.000
Bang.TextWrapped = true
UB.Name = "UB"
UB.Parent = Scripts_2
UB.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
UB.BorderColor3 = Color3.fromRGB(0, 0, 0)
UB.BorderSizePixel = 0
UB.Position = UDim2.new(0.704141974, 0, 0.290865391, 0)
UB.Size = UDim2.new(0, 62, 0, 49)
UB.Font = Enum.Font.SourceSans
UB.Text = "UnBang"
UB.TextColor3 = Color3.fromRGB(255, 255, 255)
UB.TextScaled = true
UB.TextSize = 14.000
UB.TextWrapped = true
Home_2.Name = "Home"
Home_2.Parent = MainGUI
Home_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Home_2.BackgroundTransparency = 1.000
Home_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
Home_2.BorderSizePixel = 0
Home_2.Position = UDim2.new(0.256579161, 0, 0.118393235, 0)
Home_2.Size = UDim2.new(0, 338, 0, 416)
Home_2.Visible = false
ImageLabel.Parent = Home_2
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
ImageLabel.BorderSizePixel = 0
ImageLabel.Position = UDim2.new(0.186358929, 0, 0.15472427, 0)
ImageLabel.Size = UDim2.new(0, 184, 0, 185)
ImageLabel.ZIndex = 3
ImageLabel.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
UICorner_8.Parent = ImageLabel
Welcome.Name = "Welcome"
Welcome.Parent = Home_2
Welcome.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
Welcome.BorderColor3 = Color3.fromRGB(0, 0, 0)
Welcome.BorderSizePixel = 0
Welcome.Position = UDim2.new(0.0280017108, 0, 0.0244375616, 0)
Welcome.Size = UDim2.new(0, 307, 0, 50)
Welcome.ZIndex = 3
Welcome.Font = Enum.Font.SourceSans
Welcome.Text = "Welcome..."
Welcome.TextColor3 = Color3.fromRGB(255, 255, 255)
Welcome.TextScaled = true
Welcome.TextSize = 14.000
Welcome.TextWrapped = true
Whocarees.Name = "Whocarees"
Whocarees.Parent = Home_2
Whocarees.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
Whocarees.BorderColor3 = Color3.fromRGB(0, 0, 0)
Whocarees.BorderSizePixel = 0
Whocarees.Position = UDim2.new(0.0537041426, 0, 0.628557682, 0)
Whocarees.Size = UDim2.new(0, 307, 0, 50)
Whocarees.ZIndex = 3
Whocarees.Font = Enum.Font.SourceSans
Whocarees.Text = "Role..."
Whocarees.TextColor3 = Color3.fromRGB(255, 255, 255)
Whocarees.TextScaled = true
Whocarees.TextSize = 14.000
Whocarees.TextWrapped = true
RJ_2.Name = "RJ"
RJ_2.Parent = Home_2
RJ_2.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
RJ_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
RJ_2.BorderSizePixel = 0
RJ_2.Position = UDim2.new(0.0532543473, 0, 0.766826928, 0)
RJ_2.Size = UDim2.new(0, 307, 0, 50)
RJ_2.Font = Enum.Font.SourceSans
RJ_2.Text = "Rejoin"
RJ_2.TextColor3 = Color3.fromRGB(255, 255, 255)
RJ_2.TextScaled = true
RJ_2.TextSize = 14.000
RJ_2.TextWrapped = true
-- Scripts:
local function OJYQKPY_fake_script() -- Home.LocalScript
local script = Instance.new('LocalScript', Home)
local BOH = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.BackofHome
local homeTab = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.Home
local TweenService = game:GetService("TweenService")
local IN = false
local OUT = true
local soundid = "rbxassetid://173979199"
-- configing the sound
local sound = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui.Googol)
sound.SoundId = tostring(soundid)
sound.Name = "Click"
local function changeBackgroundColor(color)
local tweenInfo = TweenInfo.new(0.5) -- Set the duration of the tween
local tween = TweenService:Create(BOH, tweenInfo, { BackgroundColor3 = color })
tween:Play()
end
homeTab.MouseEnter:Connect(function()
IN = true
OUT = false
changeBackgroundColor(Color3.fromRGB(200,200,200))
end)
homeTab.MouseLeave:Connect(function()
IN = false
OUT = true
changeBackgroundColor(Color3.fromRGB(25,25,25))
end)
homeTab.MouseButton1Click:Connect(function()
sound:Play()
end)
end
coroutine.wrap(OJYQKPY_fake_script)()
local function WEZY_fake_script() -- Scripts.LocalScript
local script = Instance.new('LocalScript', Scripts)
local BOH = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.BackofScript
local homeTab = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.Scripts
local TweenService = game:GetService("TweenService")
local IN = false
local OUT = true
local soundid = "rbxassetid://173979199"
-- configing the sound
local sound = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui.Googol)
sound.SoundId = tostring(soundid)
sound.Name = "Click"
local function changeBackgroundColor(color)
local tweenInfo = TweenInfo.new(0.5) -- Set the duration of the tween
local tween = TweenService:Create(BOH, tweenInfo, { BackgroundColor3 = color })
tween:Play()
end
homeTab.MouseEnter:Connect(function()
IN = true
OUT = false
changeBackgroundColor(Color3.fromRGB(200,200,200))
end)
homeTab.MouseLeave:Connect(function()
IN = false
OUT = true
changeBackgroundColor(Color3.fromRGB(25,25,25))
end)
homeTab.MouseButton1Click:Connect(function()
sound:Play()
end)
end
coroutine.wrap(WEZY_fake_script)()
local function GIWSJW_fake_script() -- Configuation.LocalScript
local script = Instance.new('LocalScript', Configuation)
local BOH = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.BackofConfiguation
local homeTab = game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Tabs.Configuation
local TweenService = game:GetService("TweenService")
local IN = false
local OUT = true
local soundid = "rbxassetid://173979199"
-- configing the sound
local sound = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui.Googol)
sound.SoundId = tostring(soundid)
sound.Name = "Click"
local function changeBackgroundColor(color)
local tweenInfo = TweenInfo.new(0.5) -- Set the duration of the tween
local tween = TweenService:Create(BOH, tweenInfo, { BackgroundColor3 = color })
tween:Play()
end
homeTab.MouseEnter:Connect(function()
IN = true
OUT = false
changeBackgroundColor(Color3.fromRGB(200,200,200))
end)
homeTab.MouseLeave:Connect(function()
IN = false
OUT = true
changeBackgroundColor(Color3.fromRGB(25,25,25))
end)
homeTab.MouseButton1Click:Connect(function()
sound:Play()
end)
end
coroutine.wrap(GIWSJW_fake_script)()
local function NGGLL_fake_script() -- MainGUI.LocalScript
local script = Instance.new('LocalScript', MainGUI)
local UIS = game:GetService("UserInputService")
function dragify(Frame)
dragToggle = nil
local dragSpeed = 0.50
dragInput = nil
dragStart = nil
local dragPos = nil
function updateInput(input)
local Delta = input.Position - dragStart
local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.30), {Position = Position}):Play()
end
Frame.InputBegan:Connect(function(input)
if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
dragToggle = true
dragStart = input.Position
startPos = Frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragToggle = false
end
end)
end
end)
Frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
game:GetService("UserInputService").InputChanged:Connect(function(input)
if input == dragInput and dragToggle then
updateInput(input)
end
end)
end
dragify(game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"])
end
coroutine.wrap(NGGLL_fake_script)()
local function ZUBZ_fake_script() -- RJ.LocalScript
local script = Instance.new('LocalScript', RJ)
game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.RJ.MouseButton1Click:Connect(function()
game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, game.Players.LocalPlayer)
end)
end
coroutine.wrap(ZUBZ_fake_script)()
local function GXMXL_fake_script() -- UF.LocalScript
local script = Instance.new('LocalScript', UF)
local Services = {
Players = game:GetService("Players");
UserInputService = game:GetService("UserInputService");
TweenService = game:GetService("TweenService");
RunService = game:GetService("RunService");
StarterGui = game:GetService("StarterGui");
SoundService = game:GetService("SoundService");
Lighting = game:GetService("Lighting");
MarketplaceService = game:GetService("MarketplaceService");
CharacterAppearance = game:GetService("CharacterAppearance");
}
local Players = Services.Players -- this saves me hella time
local plr = Services.Players.LocalPlayer
local LocalPlayer = Services.Players.LocalPlayer
local GameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name -- I love you Devforum <3 Tropxz
local FLYING = false
local QEfly = true
local flyspeed = 1
local char = plr.Character
local Mouse = plr:GetMouse()
local CONTROL = {}
local vehicleflyspeed = 1
local speed = 1
local radius = 5
local orbitspeed = speed
local orbitradius = radius
local eclipse = 1
local character = plr.Character
local HttpService = game.HttpService
local speaker = game.Players.LocalPlayer -- I had to skid from inf yield dont fkn ask
function getRoot(char)
local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
return rootPart
end
function sFLY(vfly)
repeat wait() until Players.LocalPlayer and Players.LocalPlayer.Character and getRoot(Players.LocalPlayer.Character) and Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
repeat wait() until Mouse
if flyKeyDown or flyKeyUp then flyKeyDown:Disconnect() flyKeyUp:Disconnect() end
local T = getRoot(Players.LocalPlayer.Character)
local CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local SPEED = 0
local function FLY()
FLYING = true
local BG = Instance.new('BodyGyro')
local BV = Instance.new('BodyVelocity')
BG.P = 9e4
BG.Parent = T
BV.Parent = T
BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
BG.cframe = T.CFrame
BV.velocity = Vector3.new(0, 0, 0)
BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
task.spawn(function()
repeat wait()
if not vfly and Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = true
end
if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0 then
SPEED = 50
elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0) and SPEED ~= 0 then
SPEED = 0
end
if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 or (CONTROL.Q + CONTROL.E) ~= 0 then
BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and (CONTROL.Q + CONTROL.E) == 0 and SPEED ~= 0 then
BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
else
BV.velocity = Vector3.new(0, 0, 0)
end
BG.cframe = workspace.CurrentCamera.CoordinateFrame
until not FLYING
CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
SPEED = 0
BG:Destroy()
BV:Destroy()
if Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = false
end
end)
end
flyKeyDown = Mouse.KeyDown:Connect(function(KEY)
if KEY:lower() == 'w' then
CONTROL.F = (vfly and vehicleflyspeed or flyspeed)
elseif KEY:lower() == 's' then
CONTROL.B = - (vfly and vehicleflyspeed or flyspeed)
elseif KEY:lower() == 'a' then
CONTROL.L = - (vfly and vehicleflyspeed or flyspeed)
elseif KEY:lower() == 'd' then
CONTROL.R = (vfly and vehicleflyspeed or flyspeed)
elseif QEfly and KEY:lower() == 'e' then
CONTROL.Q = (vfly and vehicleflyspeed or flyspeed)*2
elseif QEfly and KEY:lower() == 'q' then
CONTROL.E = -(vfly and vehicleflyspeed or flyspeed)*2
end
pcall(function() workspace.CurrentCamera.CameraType = Enum.CameraType.Track end)
end)
flyKeyUp = Mouse.KeyUp:Connect(function(KEY)
if KEY:lower() == 'w' then
CONTROL.F = 0
elseif KEY:lower() == 's' then
CONTROL.B = 0
elseif KEY:lower() == 'a' then
CONTROL.L = 0
elseif KEY:lower() == 'd' then
CONTROL.R = 0
elseif KEY:lower() == 'e' then
CONTROL.Q = 0
elseif KEY:lower() == 'q' then
CONTROL.E = 0
end
end)
FLY()
end
function NOFLY()
FLYING = false
if flyKeyDown or flyKeyUp then flyKeyDown:Disconnect() flyKeyUp:Disconnect() end
if Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = false
end
pcall(function() workspace.CurrentCamera.CameraType = Enum.CameraType.Custom end)
end
game.Players.LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.UF.MouseButton1Click:Connect(function()
NOFLY()
end)
end
coroutine.wrap(GXMXL_fake_script)()
local function ESLNKFJ_fake_script() -- MUI.LocalScript
local script = Instance.new('LocalScript', MUI)
local Services = {
Players = game:GetService("Players");
UserInputService = game:GetService("UserInputService");
TweenService = game:GetService("TweenService");
RunService = game:GetService("RunService");
StarterGui = game:GetService("StarterGui");
SoundService = game:GetService("SoundService");
Lighting = game:GetService("Lighting");
MarketplaceService = game:GetService("MarketplaceService");
CharacterAppearance = game:GetService("CharacterAppearance");
}
local Players = Services.Players -- this saves me hella time
local plr = Services.Players.LocalPlayer
local LocalPlayer = Services.Players.LocalPlayer
LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.MUI.MouseButton1Click:Connect(function(UIs)
UIs = game.Players.LocalPlayer.PlayerGui:GetChildren()
for _, ui in ipairs(UIs) do
ui.Enabled = false
end
LocalPlayer.PlayerGui.Googol.Enabled = true
end)
end
coroutine.wrap(ESLNKFJ_fake_script)()
local function IEKMUAL_fake_script() -- MUV.LocalScript
local script = Instance.new('LocalScript', MUV)
local Services = {
Players = game:GetService("Players");
UserInputService = game:GetService("UserInputService");
TweenService = game:GetService("TweenService");
RunService = game:GetService("RunService");
StarterGui = game:GetService("StarterGui");
SoundService = game:GetService("SoundService");
Lighting = game:GetService("Lighting");
MarketplaceService = game:GetService("MarketplaceService");
CharacterAppearance = game:GetService("CharacterAppearance");
}
local Players = Services.Players -- this saves me hella time
local plr = Services.Players.LocalPlayer
local LocalPlayer = Services.Players.LocalPlayer
LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.MUV.MouseButton1Click:Connect(function(UIs)
UIs = game.Players.LocalPlayer.PlayerGui:GetChildren()
for _, ui in ipairs(UIs) do
ui.Enabled = true
end
LocalPlayer.PlayerGui.Googol.Enabled = true
end)
end
coroutine.wrap(IEKMUAL_fake_script)()
local function GOXV_fake_script() -- S.LocalScript
local script = Instance.new('LocalScript', S)
local Services = {
Players = game:GetService("Players");
UserInputService = game:GetService("UserInputService");
TweenService = game:GetService("TweenService");
RunService = game:GetService("RunService");
StarterGui = game:GetService("StarterGui");
SoundService = game:GetService("SoundService");
Lighting = game:GetService("Lighting");
MarketplaceService = game:GetService("MarketplaceService");
CharacterAppearance = game:GetService("CharacterAppearance");
}
local Players = Services.Players -- this saves me hella time
local plr = Services.Players.LocalPlayer
local LocalPlayer = Services.Players.LocalPlayer
local swimming = false
local oldgrav = workspace.Gravity
local swimbeat = nil
local speaker = Services.Players.LocalPlayer
local Humanoid = plr.Character.Humanoid
local gravReset
LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.S.MouseButton1Click:Connect(function(UIs)
if not swimming and speaker and speaker.Character and speaker.Character:FindFirstChildWhichIsA("Humanoid") then
oldgrav = workspace.Gravity
workspace.Gravity = 0
local swimDied = function()
workspace.Gravity = oldgrav
swimming = false
end
local Humanoid = speaker.Character:FindFirstChildWhichIsA("Humanoid")
gravReset = Humanoid.Died:Connect(swimDied)
local enums = Enum.HumanoidStateType:GetEnumItems()
table.remove(enums, table.find(enums, Enum.HumanoidStateType.None))
for i, v in pairs(enums) do
Humanoid:SetStateEnabled(v, false)
end
Humanoid:ChangeState(Enum.HumanoidStateType.Swimming)
swimbeat = Services.RunService.Heartbeat:Connect(function()
pcall(function()
speaker.Character.HumanoidRootPart.Velocity = ((Humanoid.MoveDirection ~= Vector3.new() or Services.UserInputService:IsKeyDown(Enum.KeyCode.Space)) and speaker.Character.HumanoidRootPart.Velocity or Vector3.new())
end)
end)
swimming = true
end
end)
LocalPlayer.PlayerGui.Googol["Main GUI"].Scripts.US.MouseButton1Click:Connect(function(UIs)
if speaker and speaker.Character and speaker.Character:FindFirstChildWhichIsA("Humanoid") then
workspace.Gravity = oldgrav
swimming = false
if gravReset then
gravReset:Disconnect()
end
if swimbeat ~= nil then
swimbeat:Disconnect()
swimbeat = nil
end
local Humanoid = speaker.Character:FindFirstChildWhichIsA("Humanoid")
local enums = Enum.HumanoidStateType:GetEnumItems()
table.remove(enums, table.find(enums, Enum.HumanoidStateType.None))
for i, v in pairs(enums) do
Humanoid:SetStateEnabled(v, true)
end
end
end)
end
coroutine.wrap(GOXV_fake_script)()
local function NHGFLX_fake_script() -- Scripts_2.Float
local script = Instance.new('LocalScript', Scripts_2)
local NotificationUI = game.Players.LocalPlayer.PlayerGui.Googol.Notification
local UI = game.Players.LocalPlayer.PlayerGui.Googol
local mainframe = UI["Main GUI"]
local IYMouse = game.Players.LocalPlayer:GetMouse()
function randomString()
local length = math.random(10,20)
local array = {}
for i = 1, length do
array[i] = string.char(math.random(32, 126))
end
return table.concat(array)
end
local function sendNotification(Title, Text)
NotificationUI.title.Text = Title
NotificationUI.Description.Text = Text
-- Main Tweening W UI
NotificationUI:TweenPosition(
UDim2.new(0.022, 0, 0.842, 0),