forked from retpirato/Roblox-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
! [FE] OPFinality Gui [BEST].txt(2).lua
4097 lines (3840 loc) · 155 KB
/
! [FE] OPFinality Gui [BEST].txt(2).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
wait(0.3)
-- Objects
-- CREDIT TO xFunnieuss / Timeless for partial (short) names.
OPFinality = Instance.new("ScreenGui")
MainFrame = Instance.new("Frame")
TopFrame = Instance.new("Frame")
CloseGUI = Instance.new("TextButton")
MenuEnterFrame = Instance.new("Frame")
Title = Instance.new("TextLabel")
OpenMenu = Instance.new("ImageButton")
Pages = Instance.new("Frame")
Information = Instance.new("Frame")
Image_FE_ENABLED = Instance.new("ImageLabel")
Text_FE_ENABLED = Instance.new("TextLabel")
WhatIsOPFinality = Instance.new("TextLabel")
Text_FE_DISABLED = Instance.new("TextLabel")
OPFin_Description = Instance.new("TextLabel")
OPFin_Warning = Instance.new("TextLabel")
Info_Bar = Instance.new("Frame")
Info_Background = Instance.new("Frame")
Warning_Bar = Instance.new("Frame")
Warning_Background = Instance.new("Frame")
Info_Image = Instance.new("ImageLabel")
Image_FE_DISABLED = Instance.new("ImageLabel")
Warn_Image = Instance.new("ImageLabel")
Others_1 = Instance.new("Frame")
OthersTitle = Instance.new("TextLabel")
Char_Image = Instance.new("ImageLabel")
OthersText = Instance.new("TextLabel")
TXTBOX_PlrName = Instance.new("TextBox")
othersBaseBackground = Instance.new("Frame")
TeleportTo = Instance.new("TextButton")
Annoy = Instance.new("TextButton")
Follow = Instance.new("TextButton")
View = Instance.new("TextButton")
Orbit = Instance.new("TextButton")
HeadWalk = Instance.new("TextButton")
Stick = Instance.new("TextButton")
Spam = Instance.new("TextButton")
Carpet = Instance.new("TextButton")
Others_toPAGE2 = Instance.new("TextButton")
Character_toPAGE2_IMAGE = Instance.new("ImageLabel")
Character_2 = Instance.new("Frame")
CharacterTitle = Instance.new("TextLabel")
CharacterText = Instance.new("TextLabel")
Animations_SPOOKY = Instance.new("Frame")
spookytitle = Instance.new("TextLabel")
headthrow = Instance.new("TextButton")
armsoff = Instance.new("TextButton")
loophead = Instance.new("TextButton")
levitate = Instance.new("TextButton")
headfloat = Instance.new("TextButton")
Character_backPAGE1 = Instance.new("TextButton")
Character_toPAGE1_IMAGE = Instance.new("ImageLabel")
Animations_DANCE = Instance.new("Frame")
dancetitle = Instance.new("TextLabel")
normal = Instance.new("TextButton")
movingdance = Instance.new("TextButton")
insane = Instance.new("TextButton")
happy = Instance.new("TextButton")
spindance = Instance.new("TextButton")
Animations_HEROIC = Instance.new("Frame")
heroictitle = Instance.new("TextLabel")
swordstrike = Instance.new("TextButton")
jumpland = Instance.new("TextButton")
punches = Instance.new("TextButton")
swing = Instance.new("TextButton")
crawl = Instance.new("TextButton")
Char2_Image = Instance.new("ImageLabel")
Character_1 = Instance.new("Frame")
CharacterTitle_2 = Instance.new("TextLabel")
Char_Image_2 = Instance.new("ImageLabel")
CharacterText_2 = Instance.new("TextLabel")
TXTBOX_Stats = Instance.new("TextBox")
BackGroundChar = Instance.new("Frame")
HipHeight = Instance.new("TextButton")
JumpHeight = Instance.new("TextButton")
Speed = Instance.new("TextButton")
TXTBOX_Chat = Instance.new("TextBox")
BackGroundChar2 = Instance.new("Frame")
Chat = Instance.new("TextButton")
Spam_2 = Instance.new("TextButton")
BackGroundChar3 = Instance.new("Frame")
Noclip = Instance.new("TextButton")
Fly = Instance.new("TextButton")
Character_toPAGE2 = Instance.new("TextButton")
Character_toPAGE2_IMAGE_2 = Instance.new("ImageLabel")
Others_2 = Instance.new("Frame")
OthersTitle_2 = Instance.new("TextLabel")
Other_Image2 = Instance.new("ImageLabel")
OthersText_2 = Instance.new("TextLabel")
TXTBOX_PlrName2 = Instance.new("TextBox")
othersBaseBackground2 = Instance.new("Frame")
Flatten = Instance.new("TextButton")
AimHead = Instance.new("TextButton")
Float = Instance.new("TextButton")
Multiple = Instance.new("TextButton")
Animated = Instance.new("TextButton")
SlowAttract = Instance.new("TextButton")
WeirdOrbit = Instance.new("TextButton")
Violent = Instance.new("TextButton")
Max = Instance.new("TextButton")
Others_toPAGE3 = Instance.new("TextButton")
Character_toPAGE3_IMAGE = Instance.new("ImageLabel")
Others_backPAGE1 = Instance.new("TextButton")
Character_toPAGE1_IMAGE_2 = Instance.new("ImageLabel")
Extra_1 = Instance.new("Frame")
Extra_Image = Instance.new("ImageLabel")
ExtraText = Instance.new("TextLabel")
ExtraBaseBackGround1 = Instance.new("Frame")
CrouchRocket = Instance.new("TextButton")
ExtraBaseBackGround1Side = Instance.new("Frame")
CloneIllusion = Instance.new("TextButton")
CoolSpin = Instance.new("TextButton")
JumpRocket = Instance.new("TextButton")
Extra_toPAGE2 = Instance.new("TextButton")
Character_toPAGE2_IMAGE_3 = Instance.new("ImageLabel")
Extra_Title = Instance.new("TextLabel")
ExtraBaseBackGround2 = Instance.new("Frame")
NoLimbs = Instance.new("TextButton")
FEGodmode = Instance.new("TextButton")
BrickHats = Instance.new("TextButton")
RapidPunch = Instance.new("TextButton")
ExtraBaseBackGround2Side = Instance.new("Frame")
ExtraBaseBackGround3 = Instance.new("Frame")
PunchFollow = Instance.new("TextButton")
ArmFollow = Instance.new("TextButton")
Spin = Instance.new("TextButton")
Faint = Instance.new("TextButton")
ExtraBaseBackGround3Side = Instance.new("Frame")
Extra_2 = Instance.new("Frame")
Extra_Image_2 = Instance.new("ImageLabel")
ExtraText_2 = Instance.new("TextLabel")
Extra_Title_2 = Instance.new("TextLabel")
ExtraBaseBackGround2_2 = Instance.new("Frame")
CrouchAttack = Instance.new("TextButton")
WalkThrough = Instance.new("TextButton")
CreepyWatch = Instance.new("TextButton")
SpinAttack = Instance.new("TextButton")
ExtraBaseBackGround2Side_2 = Instance.new("Frame")
TXTBOX_PlrNameEXTRA = Instance.new("TextBox")
_18 = Instance.new("TextButton")
SlamPropulsion = Instance.new("TextButton")
Extra_backPAGE1 = Instance.new("TextButton")
Character_toPAGE1_IMAGE_3 = Instance.new("ImageLabel")
Others_3 = Instance.new("Frame")
OthersTitle_3 = Instance.new("TextLabel")
Other_Image3 = Instance.new("ImageLabel")
OthersText_3 = Instance.new("TextLabel")
TXTBOX_PlrNameOTHER3 = Instance.new("TextBox")
othersBaseBackground3 = Instance.new("Frame")
FreeFall = Instance.new("TextButton")
Attach = Instance.new("TextButton")
Bring = Instance.new("TextButton")
SafeKill = Instance.new("TextButton")
SuperSpin = Instance.new("TextButton")
Kill = Instance.new("TextButton")
Others_backPAGE2 = Instance.new("TextButton")
Character_toPAGE1_IMAGE_4 = Instance.new("ImageLabel")
Games = Instance.new("Frame")
Games_IMAGE = Instance.new("ImageLabel")
GamesText = Instance.new("TextLabel")
Games_TITLE = Instance.new("TextLabel")
Games_IMAGE2 = Instance.new("ImageLabel")
SwordFightingTournament = Instance.new("TextButton")
PlatesOfFateMayhem = Instance.new("TextButton")
GamesText2 = Instance.new("TextLabel")
Frappe = Instance.new("TextButton")
Frappe_2 = Instance.new("TextButton")
MenuFrame = Instance.new("Frame")
Welcome = Instance.new("TextLabel")
NameOfPlayer = Instance.new("TextLabel")
T_Information = Instance.new("TextButton")
T_InfoImage = Instance.new("ImageLabel")
T_Character = Instance.new("TextButton")
T_CharImage = Instance.new("ImageLabel")
T_Games = Instance.new("TextButton")
T_GameImage = Instance.new("ImageLabel")
T_Others = Instance.new("TextButton")
T_OtherImage = Instance.new("ImageLabel")
T_Extra = Instance.new("TextButton")
T_ExtraImage = Instance.new("ImageLabel")
DeleteGUI = Instance.new("TextButton")
DELETEIMAGE = Instance.new("ImageLabel")
Darkness = Instance.new("TextButton")
-- Properties
OPFinality.Name = "OPFinality"
OPFinality.Parent = game.CoreGui
MainFrame.Name = "MainFrame"
MainFrame.Parent = OPFinality
MainFrame.Active = true
MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
MainFrame.BackgroundTransparency = 1
MainFrame.BorderSizePixel = 0
MainFrame.ClipsDescendants = true
MainFrame.Draggable = true
MainFrame.Position = UDim2.new(0, 402, 0, 162)
MainFrame.Size = UDim2.new(0, 442, 0, 293)
TopFrame.Name = "TopFrame"
TopFrame.Parent = MainFrame
TopFrame.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
TopFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
TopFrame.BorderSizePixel = 0
TopFrame.Size = UDim2.new(1, 0, 0.0741975307, 0)
TopFrame.ZIndex = 7
CloseGUI.Parent = TopFrame
CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
CloseGUI.BackgroundTransparency = 1
CloseGUI.Position = UDim2.new(0.951219499, 0, 0, 0)
CloseGUI.Size = UDim2.new(0.048780486, 0, 1.00166667, 0)
CloseGUI.Font = Enum.Font.Cartoon
CloseGUI.FontSize = Enum.FontSize.Size28
CloseGUI.Text = "X"
CloseGUI.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
CloseGUI.TextSize = 25
CloseGUI.ZIndex = 8
MenuEnterFrame.Name = "MenuEnterFrame"
MenuEnterFrame.Parent = MainFrame
MenuEnterFrame.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
MenuEnterFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
MenuEnterFrame.BorderSizePixel = 0
MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
MenuEnterFrame.Size = UDim2.new(1, 0, 0.148395061, 0)
MenuEnterFrame.ZIndex = 5
Title.Name = "Title"
Title.Parent = MenuEnterFrame
Title.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Title.BackgroundTransparency = 1
Title.Position = UDim2.new(0.341463417, 0, 0, 0)
Title.Size = UDim2.new(0.292682916, 0, 1.00166667, 0)
Title.Font = Enum.Font.SourceSansLight
Title.FontSize = Enum.FontSize.Size32
Title.Text = "OPFinality"
Title.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
Title.TextSize = 30
Title.ZIndex = 6
OpenMenu.Name = "OpenMenu"
OpenMenu.Parent = MenuEnterFrame
OpenMenu.BackgroundColor3 = Color3.new(1, 1, 1)
OpenMenu.BackgroundTransparency = 1
OpenMenu.Size = UDim2.new(0.0909999982, 0, 1.01999998, 0)
OpenMenu.Image = "http://www.roblox.com/asset/?id=1280184088"
OpenMenu.ZIndex = 6
Pages.Name = "Pages"
Pages.Parent = MainFrame
Pages.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Pages.BorderSizePixel = 0
Pages.Position = UDim2.new(0, 0, 0.222592592, 0)
Pages.Size = UDim2.new(1, 0, 0.779074073, 0)
Information.Name = "Information"
Information.Parent = Pages
Information.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Information.BorderSizePixel = 0
Information.Size = UDim2.new(1, 0, 1, 0)
Image_FE_ENABLED.Name = "Image_FE_ENABLED"
Image_FE_ENABLED.Parent = Information
Image_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
Image_FE_ENABLED.BackgroundTransparency = 1
Image_FE_ENABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
Image_FE_ENABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
Image_FE_ENABLED.Visible = false
Image_FE_ENABLED.Image = "http://www.roblox.com/asset/?id=1281289312"
Text_FE_ENABLED.Name = "Text_FE_ENABLED"
Text_FE_ENABLED.Parent = Information
Text_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
Text_FE_ENABLED.BackgroundTransparency = 1
Text_FE_ENABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
Text_FE_ENABLED.Size = UDim2.new(0.795348704, 0, 0.227404833, 0)
Text_FE_ENABLED.Visible = false
Text_FE_ENABLED.Font = Enum.Font.SourceSansItalic
Text_FE_ENABLED.FontSize = Enum.FontSize.Size24
Text_FE_ENABLED.Text = "This game is Filtering Enabled! Enjoy using OPFinality."
Text_FE_ENABLED.TextSize = 19
WhatIsOPFinality.Name = "WhatIsOPFinality"
WhatIsOPFinality.Parent = Information
WhatIsOPFinality.BackgroundColor3 = Color3.new(1, 1, 1)
WhatIsOPFinality.BackgroundTransparency = 1
WhatIsOPFinality.Position = UDim2.new(0.249966726, 0, 0.227404833, 0)
WhatIsOPFinality.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
WhatIsOPFinality.Font = Enum.Font.SourceSansBold
WhatIsOPFinality.FontSize = Enum.FontSize.Size28
WhatIsOPFinality.Text = "What is OPFinality?"
WhatIsOPFinality.TextSize = 25
Text_FE_DISABLED.Name = "Text_FE_DISABLED"
Text_FE_DISABLED.Parent = Information
Text_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
Text_FE_DISABLED.BackgroundTransparency = 1
Text_FE_DISABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
Text_FE_DISABLED.Size = UDim2.new(0.545381963, 0, 0.227404833, 0)
Text_FE_DISABLED.Font = Enum.Font.SourceSansItalic
Text_FE_DISABLED.FontSize = Enum.FontSize.Size24
Text_FE_DISABLED.Text = "Oh! This game is Filtering Disabled..."
Text_FE_DISABLED.TextSize = 19
OPFin_Description.Name = "OPFin_Description"
OPFin_Description.Parent = Information
OPFin_Description.BackgroundColor3 = Color3.new(1, 1, 1)
OPFin_Description.BackgroundTransparency = 1
OPFin_Description.Position = UDim2.new(0.204999998, 0, 0.388000011, 0)
OPFin_Description.Size = UDim2.new(0.772624433, 0, 0.181923851, 0)
OPFin_Description.ZIndex = 3
OPFin_Description.Font = Enum.Font.SourceSans
OPFin_Description.FontSize = Enum.FontSize.Size18
OPFin_Description.Text = "OPFinality is an FE GUI developed by illremember made for giving you power in Filtering Enabled games."
OPFin_Description.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
OPFin_Description.TextSize = 18
OPFin_Description.TextWrapped = true
OPFin_Warning.Name = "OPFin_Warning"
OPFin_Warning.Parent = Information
OPFin_Warning.BackgroundColor3 = Color3.new(1, 1, 1)
OPFin_Warning.BackgroundTransparency = 1
OPFin_Warning.Position = UDim2.new(0.0227242485, 0, 0.636733532, 0)
OPFin_Warning.Size = UDim2.new(0.659003198, 0, 0.272885799, 0)
OPFin_Warning.ZIndex = 2
OPFin_Warning.Font = Enum.Font.SourceSans
OPFin_Warning.FontSize = Enum.FontSize.Size18
OPFin_Warning.Text = "If this game is detected as Filtering Disabled, this GUI wont work as well as other scripts would. Consider using a different script."
OPFin_Warning.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
OPFin_Warning.TextSize = 18
OPFin_Warning.TextWrapped = true
Info_Bar.Name = "Info_Bar"
Info_Bar.Parent = Information
Info_Bar.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
Info_Bar.BorderSizePixel = 0
Info_Bar.Position = UDim2.new(0.159069732, 0, 0.363847703, 0)
Info_Bar.Size = UDim2.new(0.0227242485, 0, 0.227404833, 0)
Info_Background.Name = "Info_Background"
Info_Background.Parent = Information
Info_Background.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Info_Background.BorderSizePixel = 0
Info_Background.Position = UDim2.new(0.181793988, 0, 0.363847703, 0)
Info_Background.Size = UDim2.new(0.819999993, 0, 0.226999998, 0)
Info_Background.ZIndex = 2
Warning_Bar.Name = "Warning_Bar"
Warning_Bar.Parent = Information
Warning_Bar.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
Warning_Bar.BorderSizePixel = 0
Warning_Bar.Position = UDim2.new(0.70445168, 0, 0.636733532, 0)
Warning_Bar.Size = UDim2.new(0.0227242485, 0, 0.272885799, 0)
Warning_Background.Name = "Warning_Background"
Warning_Background.Parent = Information
Warning_Background.BackgroundColor3 = Color3.new(0.945098, 0.768628, 0.0588235)
Warning_Background.BorderSizePixel = 0
Warning_Background.Position = UDim2.new(0, 0, 0.636733532, 0)
Warning_Background.Size = UDim2.new(0.70445168, 0, 0.272885799, 0)
Info_Image.Name = "Info_Image"
Info_Image.Parent = Information
Info_Image.BackgroundColor3 = Color3.new(1, 1, 1)
Info_Image.BackgroundTransparency = 1
Info_Image.Position = UDim2.new(0.0454484969, 0, 0.395091146, 0)
Info_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
Info_Image.Image = "http://www.roblox.com/asset/?id=1281284684"
Image_FE_DISABLED.Name = "Image_FE_DISABLED"
Image_FE_DISABLED.Parent = Information
Image_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
Image_FE_DISABLED.BackgroundTransparency = 1
Image_FE_DISABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
Image_FE_DISABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
Image_FE_DISABLED.Image = "http://www.roblox.com/asset/?id=1281290326"
Warn_Image.Name = "Warn_Image"
Warn_Image.Parent = Information
Warn_Image.BackgroundColor3 = Color3.new(1, 1, 1)
Warn_Image.BackgroundTransparency = 1
Warn_Image.Position = UDim2.new(0.763000011, 0, 0.677999973, 0)
Warn_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
Warn_Image.Image = "http://www.roblox.com/asset/?id=1281286925"
Others_1.Name = "Others_1"
Others_1.Parent = Pages
Others_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Others_1.BorderSizePixel = 0
Others_1.Position = UDim2.new(1.00752497, 0, 0, 0)
Others_1.Size = UDim2.new(1, 0, 1, 0)
OthersTitle.Name = "OthersTitle"
OthersTitle.Parent = Others_1
OthersTitle.BackgroundColor3 = Color3.new(1, 1, 1)
OthersTitle.BackgroundTransparency = 1
OthersTitle.Position = UDim2.new(0.226410091, 0, 0.0439298227, 0)
OthersTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
OthersTitle.Font = Enum.Font.SourceSansBold
OthersTitle.FontSize = Enum.FontSize.Size28
OthersTitle.Text = "Others"
OthersTitle.TextSize = 25
Char_Image.Name = "Char_Image"
Char_Image.Parent = Others_1
Char_Image.BackgroundColor3 = Color3.new(1, 1, 1)
Char_Image.BackgroundTransparency = 1
Char_Image.Position = UDim2.new(0.0113205044, 0, 0.153754383, 0)
Char_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
Char_Image.Image = "http://www.roblox.com/asset/?id=1281476978"
OthersText.Name = "OthersText"
OthersText.Parent = Others_1
OthersText.BackgroundColor3 = Color3.new(1, 1, 1)
OthersText.BackgroundTransparency = 1
OthersText.Position = UDim2.new(0.101884536, 0, 0.153754383, 0)
OthersText.Size = UDim2.new(0.781114817, 0, 0.175719291, 0)
OthersText.Font = Enum.Font.SourceSansItalic
OthersText.FontSize = Enum.FontSize.Size24
OthersText.Text = "Use a set of basic commands on other players! Enter a name into the textbox, supports partial names."
OthersText.TextSize = 19
OthersText.TextWrapped = true
TXTBOX_PlrName.Name = "TXTBOX_PlrName"
TXTBOX_PlrName.Parent = Others_1
TXTBOX_PlrName.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
TXTBOX_PlrName.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
TXTBOX_PlrName.BorderSizePixel = 0
TXTBOX_PlrName.Position = UDim2.new(0.249051109, 0, 0.395368397, 0)
TXTBOX_PlrName.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
TXTBOX_PlrName.ZIndex = 2
TXTBOX_PlrName.Font = Enum.Font.SourceSans
TXTBOX_PlrName.FontSize = Enum.FontSize.Size14
TXTBOX_PlrName.Text = "Player"
TXTBOX_PlrName.TextScaled = true
TXTBOX_PlrName.TextSize = 14
TXTBOX_PlrName.TextWrapped = true
othersBaseBackground.Name = "othersBaseBackground"
othersBaseBackground.Parent = Others_1
othersBaseBackground.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
othersBaseBackground.BorderSizePixel = 0
othersBaseBackground.Position = UDim2.new(0.124525554, 0, 0.351438582, 0)
othersBaseBackground.Size = UDim2.new(0.769999981, 0, 0.649999976, 0)
TeleportTo.Name = "TeleportTo"
TeleportTo.Parent = othersBaseBackground
TeleportTo.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
TeleportTo.BorderSizePixel = 0
TeleportTo.Position = UDim2.new(0.0294333119, 0, 0.27070269, 0)
TeleportTo.Size = UDim2.new(0, 92, 0, 25)
TeleportTo.Font = Enum.Font.SourceSans
TeleportTo.FontSize = Enum.FontSize.Size24
TeleportTo.Text = "Teleport To"
TeleportTo.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
TeleportTo.TextSize = 22
Annoy.Name = "Annoy"
Annoy.Parent = othersBaseBackground
Annoy.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Annoy.BorderSizePixel = 0
Annoy.Position = UDim2.new(0.0294333119, 0, 0.507567585, 0)
Annoy.Size = UDim2.new(0, 92, 0, 25)
Annoy.Font = Enum.Font.SourceSans
Annoy.FontSize = Enum.FontSize.Size24
Annoy.Text = "Annoy"
Annoy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Annoy.TextSize = 22
Follow.Name = "Follow"
Follow.Parent = othersBaseBackground
Follow.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Follow.BorderSizePixel = 0
Follow.Position = UDim2.new(0.0294333119, 0, 0.744432449, 0)
Follow.Size = UDim2.new(0, 92, 0, 25)
Follow.Font = Enum.Font.SourceSans
Follow.FontSize = Enum.FontSize.Size24
Follow.Text = "Follow"
Follow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Follow.TextSize = 22
View.Name = "View"
View.Parent = othersBaseBackground
View.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
View.BorderSizePixel = 0
View.Position = UDim2.new(0.367916405, 0, 0.27070269, 0)
View.Size = UDim2.new(0, 92, 0, 25)
View.Font = Enum.Font.SourceSans
View.FontSize = Enum.FontSize.Size24
View.Text = "View"
View.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
View.TextSize = 22
Orbit.Name = "Orbit"
Orbit.Parent = othersBaseBackground
Orbit.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Orbit.BorderSizePixel = 0
Orbit.Position = UDim2.new(0.367916405, 0, 0.507567585, 0)
Orbit.Size = UDim2.new(0, 92, 0, 25)
Orbit.Font = Enum.Font.SourceSans
Orbit.FontSize = Enum.FontSize.Size24
Orbit.Text = "Orbit"
Orbit.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Orbit.TextSize = 22
HeadWalk.Name = "HeadWalk"
HeadWalk.Parent = othersBaseBackground
HeadWalk.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
HeadWalk.BorderSizePixel = 0
HeadWalk.Position = UDim2.new(0.367916405, 0, 0.744432449, 0)
HeadWalk.Size = UDim2.new(0, 92, 0, 25)
HeadWalk.Font = Enum.Font.SourceSans
HeadWalk.FontSize = Enum.FontSize.Size24
HeadWalk.Text = "Head Walk"
HeadWalk.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
HeadWalk.TextSize = 22
Stick.Name = "Stick"
Stick.Parent = othersBaseBackground
Stick.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Stick.BorderSizePixel = 0
Stick.Position = UDim2.new(0.7063995, 0, 0.27070269, 0)
Stick.Size = UDim2.new(0, 92, 0, 25)
Stick.Font = Enum.Font.SourceSans
Stick.FontSize = Enum.FontSize.Size24
Stick.Text = "Stick"
Stick.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Stick.TextSize = 22
Spam.Name = "Spam"
Spam.Parent = othersBaseBackground
Spam.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Spam.BorderSizePixel = 0
Spam.Position = UDim2.new(0.7063995, 0, 0.507567585, 0)
Spam.Size = UDim2.new(0, 92, 0, 25)
Spam.Font = Enum.Font.SourceSans
Spam.FontSize = Enum.FontSize.Size24
Spam.Text = "Spam"
Spam.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Spam.TextSize = 22
Carpet.Name = "Carpet"
Carpet.Parent = othersBaseBackground
Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
Carpet.BorderSizePixel = 0
Carpet.Position = UDim2.new(0.7063995, 0, 0.744432449, 0)
Carpet.Size = UDim2.new(0, 92, 0, 25)
Carpet.Font = Enum.Font.SourceSans
Carpet.FontSize = Enum.FontSize.Size24
Carpet.Text = "Carpet"
Carpet.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Carpet.TextSize = 22
Others_toPAGE2.Name = "Others_toPAGE2"
Others_toPAGE2.Parent = Others_1
Others_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
Others_toPAGE2.BorderSizePixel = 0
Others_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
Others_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
Others_toPAGE2.Font = Enum.Font.SourceSansLight
Others_toPAGE2.FontSize = Enum.FontSize.Size24
Others_toPAGE2.Text = "Next"
Others_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Others_toPAGE2.TextSize = 22
Character_toPAGE2_IMAGE.Name = "Character_toPAGE2_IMAGE"
Character_toPAGE2_IMAGE.Parent = Others_toPAGE2
Character_toPAGE2_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
Character_toPAGE2_IMAGE.BorderSizePixel = 0
Character_toPAGE2_IMAGE.Position = UDim2.new(0.900659323, 0, 0, 0)
Character_toPAGE2_IMAGE.Size = UDim2.new(0, 25, 0, 25)
Character_toPAGE2_IMAGE.Image = "http://www.roblox.com/asset/?id=1282737326"
Character_2.Name = "Character_2"
Character_2.Parent = Pages
Character_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Character_2.BorderSizePixel = 0
Character_2.Position = UDim2.new(1, 0, 0, 0)
Character_2.Size = UDim2.new(1, 0, 1, 0)
CharacterTitle.Name = "CharacterTitle"
CharacterTitle.Parent = Character_2
CharacterTitle.BackgroundColor3 = Color3.new(1, 1, 1)
CharacterTitle.BackgroundTransparency = 1
CharacterTitle.Position = UDim2.new(0.226410091, 0, 0, 0)
CharacterTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
CharacterTitle.Font = Enum.Font.SourceSansBold
CharacterTitle.FontSize = Enum.FontSize.Size28
CharacterTitle.Text = "Character"
CharacterTitle.TextSize = 25
CharacterText.Name = "CharacterText"
CharacterText.Parent = Character_2
CharacterText.BackgroundColor3 = Color3.new(1, 1, 1)
CharacterText.BackgroundTransparency = 1
CharacterText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
CharacterText.Size = UDim2.new(0.679230273, 0, 0.0878596455, 0)
CharacterText.Font = Enum.Font.SourceSansItalic
CharacterText.FontSize = Enum.FontSize.Size24
CharacterText.Text = "Apply cool animations to your player!"
CharacterText.TextSize = 19
CharacterText.TextWrapped = true
Animations_SPOOKY.Name = "Animations_SPOOKY"
Animations_SPOOKY.Parent = Character_2
Animations_SPOOKY.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
Animations_SPOOKY.BorderSizePixel = 0
Animations_SPOOKY.Position = UDim2.new(0.101884536, 0, 0.263578951, 0)
Animations_SPOOKY.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
spookytitle.Name = "spookytitle"
spookytitle.Parent = Animations_SPOOKY
spookytitle.BackgroundColor3 = Color3.new(1, 1, 1)
spookytitle.BackgroundTransparency = 1
spookytitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
spookytitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
spookytitle.Font = Enum.Font.SourceSansLight
spookytitle.FontSize = Enum.FontSize.Size28
spookytitle.Text = "Spooky"
spookytitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
spookytitle.TextSize = 25
headthrow.Name = "headthrow"
headthrow.Parent = Animations_SPOOKY
headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
headthrow.BorderSizePixel = 0
headthrow.Position = UDim2.new(0, 0, 0.238476187, 0)
headthrow.Size = UDim2.new(1, 0, 0.119000003, 0)
headthrow.Font = Enum.Font.SourceSans
headthrow.FontSize = Enum.FontSize.Size14
headthrow.Text = "Head Throw"
headthrow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
headthrow.TextScaled = true
headthrow.TextSize = 14
headthrow.TextWrapped = true
armsoff.Name = "armsoff"
armsoff.Parent = Animations_SPOOKY
armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
armsoff.BorderSizePixel = 0
armsoff.Position = UDim2.new(0, 0, 0.3875238, 0)
armsoff.Size = UDim2.new(1, 0, 0.119000003, 0)
armsoff.Font = Enum.Font.SourceSans
armsoff.FontSize = Enum.FontSize.Size14
armsoff.Text = "Arms Off"
armsoff.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
armsoff.TextScaled = true
armsoff.TextSize = 14
armsoff.TextWrapped = true
loophead.Name = "loophead"
loophead.Parent = Animations_SPOOKY
loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
loophead.BorderSizePixel = 0
loophead.Position = UDim2.new(0, 0, 0.536571383, 0)
loophead.Size = UDim2.new(1, 0, 0.119000003, 0)
loophead.Font = Enum.Font.SourceSans
loophead.FontSize = Enum.FontSize.Size14
loophead.Text = "Loop Head"
loophead.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
loophead.TextScaled = true
loophead.TextSize = 14
loophead.TextWrapped = true
levitate.Name = "levitate"
levitate.Parent = Animations_SPOOKY
levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
levitate.BorderSizePixel = 0
levitate.Position = UDim2.new(0, 0, 0.685619056, 0)
levitate.Size = UDim2.new(1, 0, 0.119000003, 0)
levitate.Font = Enum.Font.SourceSans
levitate.FontSize = Enum.FontSize.Size14
levitate.Text = "Levitate"
levitate.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
levitate.TextScaled = true
levitate.TextSize = 14
levitate.TextWrapped = true
headfloat.Name = "headfloat"
headfloat.Parent = Animations_SPOOKY
headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
headfloat.BorderSizePixel = 0
headfloat.Position = UDim2.new(0, 0, 0.834666669, 0)
headfloat.Size = UDim2.new(1, 0, 0.119000003, 0)
headfloat.Font = Enum.Font.SourceSans
headfloat.FontSize = Enum.FontSize.Size14
headfloat.Text = "Head Float"
headfloat.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
headfloat.TextScaled = true
headfloat.TextSize = 14
headfloat.TextWrapped = true
Character_backPAGE1.Name = "Character_backPAGE1"
Character_backPAGE1.Parent = Character_2
Character_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
Character_backPAGE1.BorderSizePixel = 0
Character_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
Character_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
Character_backPAGE1.Font = Enum.Font.SourceSansLight
Character_backPAGE1.FontSize = Enum.FontSize.Size24
Character_backPAGE1.Text = "Prev"
Character_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Character_backPAGE1.TextSize = 22
Character_toPAGE1_IMAGE.Name = "Character_toPAGE1_IMAGE"
Character_toPAGE1_IMAGE.Parent = Character_backPAGE1
Character_toPAGE1_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
Character_toPAGE1_IMAGE.BorderSizePixel = 0
Character_toPAGE1_IMAGE.Position = UDim2.new(-0.400293052, 0, 0, 0)
Character_toPAGE1_IMAGE.Size = UDim2.new(0, 25, 0, 25)
Character_toPAGE1_IMAGE.Image = "http://www.roblox.com/asset/?id=1282894968"
Animations_DANCE.Name = "Animations_DANCE"
Animations_DANCE.Parent = Character_2
Animations_DANCE.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
Animations_DANCE.BorderSizePixel = 0
Animations_DANCE.Position = UDim2.new(0.407538146, 0, 0.263578951, 0)
Animations_DANCE.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
dancetitle.Name = "dancetitle"
dancetitle.Parent = Animations_DANCE
dancetitle.BackgroundColor3 = Color3.new(1, 1, 1)
dancetitle.BackgroundTransparency = 1
dancetitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
dancetitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
dancetitle.Font = Enum.Font.SourceSansLight
dancetitle.FontSize = Enum.FontSize.Size28
dancetitle.Text = "Dance"
dancetitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
dancetitle.TextSize = 25
normal.Name = "normal"
normal.Parent = Animations_DANCE
normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
normal.BorderSizePixel = 0
normal.Position = UDim2.new(0, 0, 0.238476187, 0)
normal.Size = UDim2.new(1, 0, 0.119000003, 0)
normal.Font = Enum.Font.SourceSans
normal.FontSize = Enum.FontSize.Size14
normal.Text = "Normal"
normal.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
normal.TextScaled = true
normal.TextSize = 14
normal.TextWrapped = true
movingdance.Name = "movingdance"
movingdance.Parent = Animations_DANCE
movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
movingdance.BorderSizePixel = 0
movingdance.Position = UDim2.new(0, 0, 0.3875238, 0)
movingdance.Size = UDim2.new(1, 0, 0.119000003, 0)
movingdance.Font = Enum.Font.SourceSans
movingdance.FontSize = Enum.FontSize.Size14
movingdance.Text = "Moving Dance"
movingdance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
movingdance.TextScaled = true
movingdance.TextSize = 14
movingdance.TextWrapped = true
insane.Name = "insane"
insane.Parent = Animations_DANCE
insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
insane.BorderSizePixel = 0
insane.Position = UDim2.new(0, 0, 0.834666669, 0)
insane.Size = UDim2.new(1, 0, 0.119000003, 0)
insane.Font = Enum.Font.SourceSans
insane.FontSize = Enum.FontSize.Size14
insane.Text = "Insane"
insane.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
insane.TextScaled = true
insane.TextSize = 14
insane.TextWrapped = true
happy.Name = "happy"
happy.Parent = Animations_DANCE
happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
happy.BorderSizePixel = 0
happy.Position = UDim2.new(0, 0, 0.536571383, 0)
happy.Size = UDim2.new(1, 0, 0.119000003, 0)
happy.Font = Enum.Font.SourceSans
happy.FontSize = Enum.FontSize.Size14
happy.Text = "Happy"
happy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
happy.TextScaled = true
happy.TextSize = 14
happy.TextWrapped = true
spindance.Name = "spindance"
spindance.Parent = Animations_DANCE
spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
spindance.BorderSizePixel = 0
spindance.Position = UDim2.new(0, 0, 0.685619056, 0)
spindance.Size = UDim2.new(1, 0, 0.119000003, 0)
spindance.Font = Enum.Font.SourceSans
spindance.FontSize = Enum.FontSize.Size14
spindance.Text = "Spin Dance"
spindance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
spindance.TextScaled = true
spindance.TextSize = 14
spindance.TextWrapped = true
Animations_HEROIC.Name = "Animations_HEROIC"
Animations_HEROIC.Parent = Character_2
Animations_HEROIC.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
Animations_HEROIC.BorderSizePixel = 0
Animations_HEROIC.Position = UDim2.new(0.713191807, 0, 0.263578951, 0)
Animations_HEROIC.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
heroictitle.Name = "heroictitle"
heroictitle.Parent = Animations_HEROIC
heroictitle.BackgroundColor3 = Color3.new(1, 1, 1)
heroictitle.BackgroundTransparency = 1
heroictitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
heroictitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
heroictitle.Font = Enum.Font.SourceSansLight
heroictitle.FontSize = Enum.FontSize.Size28
heroictitle.Text = "Heroic"
heroictitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
heroictitle.TextSize = 25
swordstrike.Name = "swordstrike"
swordstrike.Parent = Animations_HEROIC
swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
swordstrike.BorderSizePixel = 0
swordstrike.Position = UDim2.new(0, 0, 0.238476187, 0)
swordstrike.Size = UDim2.new(1, 0, 0.119000003, 0)
swordstrike.Font = Enum.Font.SourceSans
swordstrike.FontSize = Enum.FontSize.Size14
swordstrike.Text = "Sword Strike"
swordstrike.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
swordstrike.TextScaled = true
swordstrike.TextSize = 14
swordstrike.TextWrapped = true
jumpland.Name = "jumpland"
jumpland.Parent = Animations_HEROIC
jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
jumpland.BorderSizePixel = 0
jumpland.Position = UDim2.new(0, 0, 0.3875238, 0)
jumpland.Size = UDim2.new(1, 0, 0.119000003, 0)
jumpland.Font = Enum.Font.SourceSans
jumpland.FontSize = Enum.FontSize.Size14
jumpland.Text = "Jump Land"
jumpland.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
jumpland.TextScaled = true
jumpland.TextSize = 14
jumpland.TextWrapped = true
punches.Name = "punches"
punches.Parent = Animations_HEROIC
punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
punches.BorderSizePixel = 0
punches.Position = UDim2.new(0, 0, 0.834666669, 0)
punches.Size = UDim2.new(1, 0, 0.119000003, 0)
punches.Font = Enum.Font.SourceSans
punches.FontSize = Enum.FontSize.Size14
punches.Text = "Punches"
punches.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
punches.TextScaled = true
punches.TextSize = 14
punches.TextWrapped = true
swing.Name = "swing"
swing.Parent = Animations_HEROIC
swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
swing.BorderSizePixel = 0
swing.Position = UDim2.new(0, 0, 0.536571383, 0)
swing.Size = UDim2.new(1, 0, 0.119000003, 0)
swing.Font = Enum.Font.SourceSans
swing.FontSize = Enum.FontSize.Size14
swing.Text = "Swing"
swing.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
swing.TextScaled = true
swing.TextSize = 14
swing.TextWrapped = true
crawl.Name = "crawl"
crawl.Parent = Animations_HEROIC
crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
crawl.BorderSizePixel = 0
crawl.Position = UDim2.new(0, 0, 0.685619056, 0)
crawl.Size = UDim2.new(1, 0, 0.119000003, 0)
crawl.Font = Enum.Font.SourceSans
crawl.FontSize = Enum.FontSize.Size14
crawl.Text = "Crawl"
crawl.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
crawl.TextScaled = true
crawl.TextSize = 14
crawl.TextWrapped = true
Char2_Image.Name = "Char2_Image"
Char2_Image.Parent = Character_2
Char2_Image.BackgroundColor3 = Color3.new(1, 1, 1)
Char2_Image.BackgroundTransparency = 1
Char2_Image.Position = UDim2.new(0.792435288, 0, 0.0219649114, 0)
Char2_Image.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
Char2_Image.Image = "http://www.roblox.com/asset/?id=1282931168"
Character_1.Name = "Character_1"
Character_1.Parent = Pages
Character_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Character_1.BorderSizePixel = 0
Character_1.Position = UDim2.new(11, 0, 0, 0)
Character_1.Size = UDim2.new(1, 0, 1, 0)
CharacterTitle_2.Name = "CharacterTitle"
CharacterTitle_2.Parent = Character_1
CharacterTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
CharacterTitle_2.BackgroundTransparency = 1
CharacterTitle_2.Position = UDim2.new(0.226410091, 0, 0, 0)
CharacterTitle_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
CharacterTitle_2.Font = Enum.Font.SourceSansBold
CharacterTitle_2.FontSize = Enum.FontSize.Size28
CharacterTitle_2.Text = "Character"
CharacterTitle_2.TextSize = 25
Char_Image_2.Name = "Char_Image"
Char_Image_2.Parent = Character_1
Char_Image_2.BackgroundColor3 = Color3.new(1, 1, 1)
Char_Image_2.BackgroundTransparency = 1
Char_Image_2.Position = UDim2.new(0.0792435333, 0, 0.109824568, 0)
Char_Image_2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
Char_Image_2.Image = "http://www.roblox.com/asset/?id=1281299598"
CharacterText_2.Name = "CharacterText"
CharacterText_2.Parent = Character_1
CharacterText_2.BackgroundColor3 = Color3.new(1, 1, 1)
CharacterText_2.BackgroundTransparency = 1
CharacterText_2.Position = UDim2.new(0.147166565, 0, 0.109824568, 0)
CharacterText_2.Size = UDim2.new(0.679230273, 0, 0.175719291, 0)
CharacterText_2.Font = Enum.Font.SourceSansItalic
CharacterText_2.FontSize = Enum.FontSize.Size24
CharacterText_2.Text = "Change your character's speed and other stats, give yourself fly, noclip and more!"
CharacterText_2.TextSize = 19
CharacterText_2.TextWrapped = true
TXTBOX_Stats.Name = "TXTBOX_Stats"
TXTBOX_Stats.Parent = Character_1
TXTBOX_Stats.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
TXTBOX_Stats.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
TXTBOX_Stats.BorderSizePixel = 6
TXTBOX_Stats.Position = UDim2.new(0.0905640349, 0, 0.373403519, 0)
TXTBOX_Stats.Size = UDim2.new(0.18112807, 0, 0.0878596455, 0)
TXTBOX_Stats.Font = Enum.Font.SourceSans
TXTBOX_Stats.FontSize = Enum.FontSize.Size14
TXTBOX_Stats.Text = "Number"
TXTBOX_Stats.TextScaled = true
TXTBOX_Stats.TextSize = 14
TXTBOX_Stats.TextWrapped = true
BackGroundChar.Name = "BackGroundChar"
BackGroundChar.Parent = Character_1
BackGroundChar.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
BackGroundChar.BorderSizePixel = 0
BackGroundChar.Position = UDim2.new(0.0769999996, 0, 0.48300001, 0)
BackGroundChar.Size = UDim2.new(0, 92, 0, 118)
HipHeight.Name = "HipHeight"
HipHeight.Parent = BackGroundChar
HipHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
HipHeight.BorderSizePixel = 0
HipHeight.Position = UDim2.new(0, 0, 0.679050863, 0)
HipHeight.Size = UDim2.new(0, 92, 0, 25)
HipHeight.Font = Enum.Font.SourceSans
HipHeight.FontSize = Enum.FontSize.Size24
HipHeight.Text = "HipHeight"
HipHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
HipHeight.TextSize = 22
JumpHeight.Name = "JumpHeight"
JumpHeight.Parent = BackGroundChar
JumpHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
JumpHeight.BorderSizePixel = 0
JumpHeight.Position = UDim2.new(0, 0, 0.381966084, 0)
JumpHeight.Size = UDim2.new(0, 92, 0, 25)
JumpHeight.Font = Enum.Font.SourceSans
JumpHeight.FontSize = Enum.FontSize.Size24
JumpHeight.Text = "JumpHeight"
JumpHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
JumpHeight.TextSize = 20
Speed.Name = "Speed"
Speed.Parent = BackGroundChar
Speed.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
Speed.BorderSizePixel = 0
Speed.Position = UDim2.new(0, 0, 0.0848813578, 0)
Speed.Size = UDim2.new(0, 92, 0, 25)
Speed.Font = Enum.Font.SourceSans
Speed.FontSize = Enum.FontSize.Size24
Speed.Text = "Speed"
Speed.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
Speed.TextSize = 22
TXTBOX_Chat.Name = "TXTBOX_Chat"
TXTBOX_Chat.Parent = Character_1