-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathKRNL UI Remake.lua
2073 lines (1861 loc) · 69.9 KB
/
KRNL UI Remake.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 KRNL = Instance.new("ScreenGui")
local KrnlGUI = Instance.new("Frame")
local FileButton = Instance.new("TextButton")
local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
local CreditsButton = Instance.new("TextButton")
local UITextSizeConstraint_2 = Instance.new("UITextSizeConstraint")
local GamesButton = Instance.new("TextButton")
local UITextSizeConstraint_3 = Instance.new("UITextSizeConstraint")
local HotScriptsButton = Instance.new("TextButton")
local UITextSizeConstraint_4 = Instance.new("UITextSizeConstraint")
local OthersButton = Instance.new("TextButton")
local UITextSizeConstraint_5 = Instance.new("UITextSizeConstraint")
local SideGUI = Instance.new("Frame")
local ImageLabel = Instance.new("ImageLabel")
local TextLabel = Instance.new("TextLabel")
local Xbutton = Instance.new("TextButton")
local UITextSizeConstraint_6 = Instance.new("UITextSizeConstraint")
local button = Instance.new("TextButton")
local UITextSizeConstraint_7 = Instance.new("UITextSizeConstraint")
local MainGUI = Instance.new("Frame")
local ExecuteBar = Instance.new("Frame")
local Frame = Instance.new("Frame")
local Script1 = Instance.new("Frame")
local TextButton = Instance.new("TextButton")
local UITextSizeConstraint_8 = Instance.new("UITextSizeConstraint")
local UITextSizeConstraint_9 = Instance.new("UITextSizeConstraint")
local TextButton_2 = Instance.new("TextButton")
local UITextSizeConstraint_10 = Instance.new("UITextSizeConstraint")
local UITextSizeConstraint_11 = Instance.new("UITextSizeConstraint")
local Script2 = Instance.new("Frame")
local TextButton_3 = Instance.new("TextButton")
local UITextSizeConstraint_12 = Instance.new("UITextSizeConstraint")
local UITextSizeConstraint_13 = Instance.new("UITextSizeConstraint")
local TextButton_4 = Instance.new("TextButton")
local UITextSizeConstraint_14 = Instance.new("UITextSizeConstraint")
local UITextSizeConstraint_15 = Instance.new("UITextSizeConstraint")
local addbutton = Instance.new("TextButton")
local ScrollingFrame1 = Instance.new("ScrollingFrame")
local ImageLabel_2 = Instance.new("ImageLabel")
local security = Instance.new("TextLabel")
local EditorFrame = Instance.new("ScrollingFrame")
local Source = Instance.new("TextBox")
local Comments_ = Instance.new("TextLabel")
local Globals_ = Instance.new("TextLabel")
local Keywords_ = Instance.new("TextLabel")
local RemoteHighlight_ = Instance.new("TextLabel")
local Strings_ = Instance.new("TextLabel")
local Tokens_ = Instance.new("TextLabel")
local Numbers_ = Instance.new("TextLabel")
local Lines = Instance.new("TextLabel")
local ScrollingFrame2 = Instance.new("ScrollingFrame")
local ImageLabel_3 = Instance.new("ImageLabel")
local security_2 = Instance.new("TextLabel")
local EditorFrame_2 = Instance.new("ScrollingFrame")
local Source_2 = Instance.new("TextBox")
local Comments__2 = Instance.new("TextLabel")
local Globals__2 = Instance.new("TextLabel")
local Keywords__2 = Instance.new("TextLabel")
local RemoteHighlight__2 = Instance.new("TextLabel")
local Strings__2 = Instance.new("TextLabel")
local Tokens__2 = Instance.new("TextLabel")
local Numbers__2 = Instance.new("TextLabel")
local Lines_2 = Instance.new("TextLabel")
local Execute = Instance.new("TextButton")
local UITextSizeConstraint_16 = Instance.new("UITextSizeConstraint")
local Clear = Instance.new("TextButton")
local UITextSizeConstraint_17 = Instance.new("UITextSizeConstraint")
local OpenFileButton = Instance.new("TextButton")
local UITextSizeConstraint_18 = Instance.new("UITextSizeConstraint")
local SaveFileButton = Instance.new("TextButton")
local UITextSizeConstraint_19 = Instance.new("UITextSizeConstraint")
local InjectButton = Instance.new("TextButton")
local UITextSizeConstraint_20 = Instance.new("UITextSizeConstraint")
local OptionButton = Instance.new("TextButton")
local UITextSizeConstraint_21 = Instance.new("UITextSizeConstraint")
local ScriptHub = Instance.new("ScrollingFrame")
local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint")
local InjectedMessgae = Instance.new("Frame")
local Frame_2 = Instance.new("Frame")
local Xbutton_2 = Instance.new("TextButton")
local UITextSizeConstraint_22 = Instance.new("UITextSizeConstraint")
local TextLabel_2 = Instance.new("TextLabel")
local Frame_3 = Instance.new("Frame")
local Okbutton = Instance.new("TextButton")
local UITextSizeConstraint_23 = Instance.new("UITextSizeConstraint")
local TextLabel_3 = Instance.new("TextLabel")
local UITextSizeConstraint_24 = Instance.new("UITextSizeConstraint")
local HScriptsHub = Instance.new("Frame")
local DexExplorer = Instance.new("TextButton")
local UITextSizeConstraint_25 = Instance.new("UITextSizeConstraint")
local OpenGui = Instance.new("TextButton")
local UITextSizeConstraint_26 = Instance.new("UITextSizeConstraint")
local RemoteSpy = Instance.new("TextButton")
local UITextSizeConstraint_27 = Instance.new("UITextSizeConstraint")
local DarkDex = Instance.new("TextButton")
local UITextSizeConstraint_28 = Instance.new("UITextSizeConstraint")
local UnamedEsp = Instance.new("TextButton")
local UITextSizeConstraint_29 = Instance.new("UITextSizeConstraint")
local IYFE = Instance.new("TextButton")
local UITextSizeConstraint_30 = Instance.new("UITextSizeConstraint")
local OwlHub = Instance.new("TextButton")
local UITextSizeConstraint_31 = Instance.new("UITextSizeConstraint")
local HoHoHub = Instance.new("TextButton")
local UITextSizeConstraint_32 = Instance.new("UITextSizeConstraint")
local BlueLight = Instance.new("Frame")
local CreditsW = Instance.new("Frame")
local Frame_4 = Instance.new("Frame")
local Xbutton_3 = Instance.new("TextButton")
local UITextSizeConstraint_33 = Instance.new("UITextSizeConstraint")
local TextLabel_4 = Instance.new("TextLabel")
local UITextSizeConstraint_34 = Instance.new("UITextSizeConstraint")
local TextLabel_5 = Instance.new("TextLabel")
local UITextSizeConstraint_35 = Instance.new("UITextSizeConstraint")
local ImageLabel_4 = Instance.new("ImageLabel")
local OtherTab = Instance.new("Frame")
local WHy = Instance.new("TextButton")
local UITextSizeConstraint_36 = Instance.new("UITextSizeConstraint")
local Nope = Instance.new("TextButton")
local UITextSizeConstraint_37 = Instance.new("UITextSizeConstraint")
local FileTab = Instance.new("Frame")
local KillTask = Instance.new("TextButton")
local UITextSizeConstraint_38 = Instance.new("UITextSizeConstraint")
local Inject = Instance.new("TextButton")
local UITextSizeConstraint_39 = Instance.new("UITextSizeConstraint")
local GamesOpenGUI = Instance.new("Frame")
local Frame_5 = Instance.new("Frame")
local Xbutton_4 = Instance.new("TextButton")
local UITextSizeConstraint_40 = Instance.new("UITextSizeConstraint")
local Frame_6 = Instance.new("Frame")
local Okbutton_2 = Instance.new("TextButton")
local UITextSizeConstraint_41 = Instance.new("UITextSizeConstraint")
local TextLabel_6 = Instance.new("TextLabel")
local UITextSizeConstraint_42 = Instance.new("UITextSizeConstraint")
local UIAspectRatioConstraint_2 = Instance.new("UIAspectRatioConstraint")
local FloatingGUI = Instance.new("ImageButton")
--Properties:
KRNL.Name = "KRNL"
KRNL.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
KRNL.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
KRNL.ResetOnSpawn = false
KrnlGUI.Name = "KrnlGUI"
KrnlGUI.Parent = KRNL
KrnlGUI.Active = true
KrnlGUI.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
KrnlGUI.BorderColor3 = Color3.fromRGB(34, 34, 34)
KrnlGUI.Position = UDim2.new(0, 137, 0, 141)
KrnlGUI.Size = UDim2.new(0, 685, 0, 344)
KrnlGUI.Visible = false
FileButton.Name = "File Button"
FileButton.Parent = KrnlGUI
FileButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
FileButton.BackgroundTransparency = 1.000
FileButton.Position = UDim2.new(0.00264457078, 0, 0.0971021578, 0)
FileButton.Size = UDim2.new(0.0666066185, 0, 0.0681233257, 0)
FileButton.Font = Enum.Font.SourceSans
FileButton.Text = "File"
FileButton.TextColor3 = Color3.fromRGB(255, 255, 255)
FileButton.TextScaled = true
FileButton.TextSize = 16.000
FileButton.TextWrapped = true
UITextSizeConstraint.Parent = FileButton
UITextSizeConstraint.MaxTextSize = 16
CreditsButton.Name = "Credits Button"
CreditsButton.Parent = KrnlGUI
CreditsButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
CreditsButton.BackgroundTransparency = 1.000
CreditsButton.Position = UDim2.new(0.0700000003, 0, 0.0970000029, 0)
CreditsButton.Size = UDim2.new(0.0666066185, 0, 0.0681233257, 0)
CreditsButton.Font = Enum.Font.SourceSans
CreditsButton.Text = "Credits"
CreditsButton.TextColor3 = Color3.fromRGB(255, 255, 255)
CreditsButton.TextScaled = true
CreditsButton.TextSize = 16.000
CreditsButton.TextWrapped = true
UITextSizeConstraint_2.Parent = CreditsButton
UITextSizeConstraint_2.MaxTextSize = 16
GamesButton.Name = "Games Button"
GamesButton.Parent = KrnlGUI
GamesButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
GamesButton.BackgroundTransparency = 1.000
GamesButton.Position = UDim2.new(0.150000006, 0, 0.0970000029, 0)
GamesButton.Size = UDim2.new(0.0666066185, 0, 0.0681233257, 0)
GamesButton.Font = Enum.Font.SourceSans
GamesButton.Text = "Games"
GamesButton.TextColor3 = Color3.fromRGB(255, 255, 255)
GamesButton.TextScaled = true
GamesButton.TextSize = 15.000
GamesButton.TextWrapped = true
UITextSizeConstraint_3.Parent = GamesButton
UITextSizeConstraint_3.MaxTextSize = 15
HotScriptsButton.Name = "Hot Scripts Button"
HotScriptsButton.Parent = KrnlGUI
HotScriptsButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
HotScriptsButton.BackgroundTransparency = 1.000
HotScriptsButton.Position = UDim2.new(0.232577384, 0, 0.0970000103, 0)
HotScriptsButton.Size = UDim2.new(0.0943726227, 0, 0.0681233257, 0)
HotScriptsButton.Font = Enum.Font.SourceSans
HotScriptsButton.Text = "Hot-Scripts"
HotScriptsButton.TextColor3 = Color3.fromRGB(255, 255, 255)
HotScriptsButton.TextScaled = true
HotScriptsButton.TextSize = 15.000
HotScriptsButton.TextWrapped = true
UITextSizeConstraint_4.Parent = HotScriptsButton
UITextSizeConstraint_4.MaxTextSize = 15
OthersButton.Name = "Others Button"
OthersButton.Parent = KrnlGUI
OthersButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
OthersButton.BackgroundTransparency = 1.000
OthersButton.Position = UDim2.new(0.340016991, 0, 0.0970000103, 0)
OthersButton.Size = UDim2.new(0.0682386607, 0, 0.0681233257, 0)
OthersButton.Font = Enum.Font.SourceSans
OthersButton.Text = "Others"
OthersButton.TextColor3 = Color3.fromRGB(255, 255, 255)
OthersButton.TextScaled = true
OthersButton.TextSize = 15.000
OthersButton.TextWrapped = true
UITextSizeConstraint_5.Parent = OthersButton
UITextSizeConstraint_5.MaxTextSize = 15
SideGUI.Name = "Side GUI"
SideGUI.Parent = KrnlGUI
SideGUI.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
SideGUI.BorderColor3 = Color3.fromRGB(31, 31, 31)
SideGUI.Size = UDim2.new(0.99889791, 0, 0.095630005, 0)
ImageLabel.Parent = SideGUI
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.Position = UDim2.new(0.00300000003, 0, 0.123999998, 0)
ImageLabel.Size = UDim2.new(0.0361689702, 0, 0.726585209, 0)
ImageLabel.Image = "rbxassetid://11671355800"
TextLabel.Parent = SideGUI
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Position = UDim2.new(0.465686679, 0, 0.136606336, 0)
TextLabel.Size = UDim2.new(0.0694269463, 0, 0.726004899, 0)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "KRNL"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextScaled = true
TextLabel.TextSize = 20.000
TextLabel.TextWrapped = true
Xbutton.Name = "X button"
Xbutton.Parent = SideGUI
Xbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Xbutton.BackgroundTransparency = 1.000
Xbutton.Position = UDim2.new(0.957000017, 0, 0.159999996, 0)
Xbutton.Size = UDim2.new(0.0409558825, 0, 0.690584838, 0)
Xbutton.Font = Enum.Font.SourceSans
Xbutton.Text = "X"
Xbutton.TextColor3 = Color3.fromRGB(255, 255, 255)
Xbutton.TextSize = 40.000
Xbutton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
Xbutton.TextWrapped = true
UITextSizeConstraint_6.Parent = Xbutton
UITextSizeConstraint_6.MaxTextSize = 35
button.Name = "- button"
button.Parent = SideGUI
button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
button.BackgroundTransparency = 1.000
button.Position = UDim2.new(0.910000026, 0, 0.159999996, 0)
button.Size = UDim2.new(0.0409558825, 0, 0.690584838, 0)
button.Font = Enum.Font.SourceSans
button.Text = "−"
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextScaled = true
button.TextSize = 35.000
button.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
button.TextWrapped = true
UITextSizeConstraint_7.Parent = button
UITextSizeConstraint_7.MaxTextSize = 35
MainGUI.Name = "MainGUI"
MainGUI.Parent = KrnlGUI
MainGUI.BackgroundColor3 = Color3.fromRGB(17, 17, 17)
MainGUI.BorderColor3 = Color3.fromRGB(0, 0, 0)
MainGUI.Position = UDim2.new(0, 0, 0.168076977, 0)
MainGUI.Size = UDim2.new(0.99999994, 0, 0.831923008, 0)
ExecuteBar.Name = "ExecuteBar"
ExecuteBar.Parent = MainGUI
ExecuteBar.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
ExecuteBar.BorderColor3 = Color3.fromRGB(37, 37, 37)
ExecuteBar.Position = UDim2.new(0.0070000249, 0, 0.00649997452, 0)
ExecuteBar.Size = UDim2.new(0.803592086, 0, 0.88723731, 0)
Frame.Parent = ExecuteBar
Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
Frame.BorderColor3 = Color3.fromRGB(50, 50, 50)
Frame.Size = UDim2.new(0.999999881, 0, 0.0568133108, 0)
Script1.Name = "Script1"
Script1.Parent = Frame
Script1.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
Script1.BorderColor3 = Color3.fromRGB(50, 50, 50)
Script1.Position = UDim2.new(-0.00180647022, 0, 0, 0)
Script1.Size = UDim2.new(0.156733111, 0, 1.00000775, 0)
TextButton.Parent = Script1
TextButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
TextButton.BorderColor3 = Color3.fromRGB(50, 50, 50)
TextButton.Size = UDim2.new(0.8415097, 0, 0.999998391, 0)
TextButton.Font = Enum.Font.SourceSans
TextButton.Text = "Script1.lua"
TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton.TextScaled = true
TextButton.TextSize = 16.000
TextButton.TextWrapped = true
UITextSizeConstraint_8.Parent = TextButton
UITextSizeConstraint_8.MaxTextSize = 16
UITextSizeConstraint_9.Parent = TextButton
UITextSizeConstraint_9.MaxTextSize = 16
TextButton_2.Parent = Script1
TextButton_2.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
TextButton_2.BorderColor3 = Color3.fromRGB(50, 50, 50)
TextButton_2.Position = UDim2.new(0.841509819, 0, 0, 0)
TextButton_2.Size = UDim2.new(0.158490166, 0, 0.952832103, 0)
TextButton_2.Font = Enum.Font.SourceSans
TextButton_2.Text = "X"
TextButton_2.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 16.000
TextButton_2.TextWrapped = true
UITextSizeConstraint_10.Parent = TextButton_2
UITextSizeConstraint_10.MaxTextSize = 16
UITextSizeConstraint_11.Parent = TextButton_2
UITextSizeConstraint_11.MaxTextSize = 16
Script2.Name = "Script2"
Script2.Parent = Frame
Script2.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
Script2.BorderColor3 = Color3.fromRGB(50, 50, 50)
Script2.Position = UDim2.new(0.159876347, 0, 0, 0)
Script2.Size = UDim2.new(0.156733111, 0, 1.00000775, 0)
Script2.Visible = false
TextButton_3.Parent = Script2
TextButton_3.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
TextButton_3.BorderColor3 = Color3.fromRGB(50, 50, 50)
TextButton_3.Position = UDim2.new(-3.7252903e-09, 0, 0, 0)
TextButton_3.Size = UDim2.new(0.8415097, 0, 0.999998391, 0)
TextButton_3.Font = Enum.Font.SourceSans
TextButton_3.Text = "Script2.lua"
TextButton_3.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_3.TextScaled = true
TextButton_3.TextSize = 16.000
TextButton_3.TextWrapped = true
UITextSizeConstraint_12.Parent = TextButton_3
UITextSizeConstraint_12.MaxTextSize = 16
UITextSizeConstraint_13.Parent = TextButton_3
UITextSizeConstraint_13.MaxTextSize = 16
TextButton_4.Parent = Script2
TextButton_4.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
TextButton_4.BorderColor3 = Color3.fromRGB(50, 50, 50)
TextButton_4.Position = UDim2.new(0.841509819, 0, 0, 0)
TextButton_4.Size = UDim2.new(0.158490166, 0, 0.952832103, 0)
TextButton_4.Font = Enum.Font.SourceSans
TextButton_4.Text = "X"
TextButton_4.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_4.TextScaled = true
TextButton_4.TextSize = 16.000
TextButton_4.TextWrapped = true
UITextSizeConstraint_14.Parent = TextButton_4
UITextSizeConstraint_14.MaxTextSize = 16
UITextSizeConstraint_15.Parent = TextButton_4
UITextSizeConstraint_15.MaxTextSize = 16
addbutton.Name = "addbutton"
addbutton.Parent = Frame
addbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
addbutton.BackgroundTransparency = 1.000
addbutton.Position = UDim2.new(0.154416174, 0, 0, 0)
addbutton.Size = UDim2.new(0, 19, 0, 13)
addbutton.Font = Enum.Font.SourceSans
addbutton.Text = "+"
addbutton.TextColor3 = Color3.fromRGB(255, 255, 255)
addbutton.TextSize = 17.000
ScrollingFrame1.Name = "ScrollingFrame1"
ScrollingFrame1.Parent = ExecuteBar
ScrollingFrame1.Active = true
ScrollingFrame1.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
ScrollingFrame1.BorderColor3 = Color3.fromRGB(40, 40, 40)
ScrollingFrame1.Position = UDim2.new(0.0127166249, 0, 0.079058826, 0)
ScrollingFrame1.Size = UDim2.new(0.973659992, 0, 0.917334437, 0)
ScrollingFrame1.ScrollBarThickness = 10
ImageLabel_2.Parent = ScrollingFrame1
ImageLabel_2.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
ImageLabel_2.BackgroundTransparency = 1.000
ImageLabel_2.BorderSizePixel = 0
ImageLabel_2.Position = UDim2.new(0.00505135441, 0, -0.0532468483, 27)
ImageLabel_2.Size = UDim2.new(0, 541, 0, 359)
ImageLabel_2.ImageTransparency = 1.000
security.Name = "security"
security.Parent = ImageLabel_2
security.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
security.Size = UDim2.new(0, 552, 0, 258)
security.Visible = false
security.Font = Enum.Font.SourceSans
security.TextColor3 = Color3.fromRGB(0, 0, 0)
security.TextSize = 14.000
EditorFrame.Name = "EditorFrame"
EditorFrame.Parent = ImageLabel_2
EditorFrame.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
EditorFrame.BackgroundTransparency = 1.000
EditorFrame.BorderColor3 = Color3.fromRGB(61, 61, 61)
EditorFrame.Size = UDim2.new(1, 0, 1, 0)
EditorFrame.ZIndex = 3
EditorFrame.BottomImage = "rbxassetid://148970562"
EditorFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
EditorFrame.HorizontalScrollBarInset = Enum.ScrollBarInset.ScrollBar
EditorFrame.MidImage = "rbxassetid://148970562"
EditorFrame.ScrollBarThickness = 5
EditorFrame.TopImage = "rbxassetid://148970562"
Source.Name = "Source"
Source.Parent = EditorFrame
Source.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Source.BackgroundTransparency = 1.000
Source.Position = UDim2.new(0, 19, 0, 0)
Source.Size = UDim2.new(0.965984941, 0, 1, 0)
Source.ZIndex = 3
Source.ClearTextOnFocus = false
Source.Font = Enum.Font.Code
Source.MultiLine = true
Source.PlaceholderColor3 = Color3.fromRGB(204, 204, 204)
Source.Text = "--Welcome To KRNL Mobile!"
Source.TextColor3 = Color3.fromRGB(204, 204, 204)
Source.TextSize = 14.000
Source.TextXAlignment = Enum.TextXAlignment.Left
Source.TextYAlignment = Enum.TextYAlignment.Top
Comments_.Name = "Comments_"
Comments_.Parent = Source
Comments_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Comments_.BackgroundTransparency = 1.000
Comments_.Size = UDim2.new(1, 0, 1, 0)
Comments_.ZIndex = 5
Comments_.Font = Enum.Font.Code
Comments_.Text = ""
Comments_.TextColor3 = Color3.fromRGB(59, 200, 59)
Comments_.TextSize = 14.000
Comments_.TextXAlignment = Enum.TextXAlignment.Left
Comments_.TextYAlignment = Enum.TextYAlignment.Top
Globals_.Name = "Globals_"
Globals_.Parent = Source
Globals_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Globals_.BackgroundTransparency = 1.000
Globals_.Size = UDim2.new(1, 0, 1, 0)
Globals_.ZIndex = 5
Globals_.Font = Enum.Font.Code
Globals_.Text = ""
Globals_.TextColor3 = Color3.fromRGB(85, 222, 154)
Globals_.TextSize = 14.000
Globals_.TextXAlignment = Enum.TextXAlignment.Left
Globals_.TextYAlignment = Enum.TextYAlignment.Top
Keywords_.Name = "Keywords_"
Keywords_.Parent = Source
Keywords_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Keywords_.BackgroundTransparency = 1.000
Keywords_.Size = UDim2.new(1, 0, 1, 0)
Keywords_.ZIndex = 5
Keywords_.Font = Enum.Font.Code
Keywords_.Text = ""
Keywords_.TextColor3 = Color3.fromRGB(213, 53, 117)
Keywords_.TextSize = 14.000
Keywords_.TextXAlignment = Enum.TextXAlignment.Left
Keywords_.TextYAlignment = Enum.TextYAlignment.Top
RemoteHighlight_.Name = "RemoteHighlight_"
RemoteHighlight_.Parent = Source
RemoteHighlight_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RemoteHighlight_.BackgroundTransparency = 1.000
RemoteHighlight_.Size = UDim2.new(1, 0, 1, 0)
RemoteHighlight_.ZIndex = 5
RemoteHighlight_.Font = Enum.Font.Code
RemoteHighlight_.Text = ""
RemoteHighlight_.TextColor3 = Color3.fromRGB(0, 144, 255)
RemoteHighlight_.TextSize = 14.000
RemoteHighlight_.TextXAlignment = Enum.TextXAlignment.Left
RemoteHighlight_.TextYAlignment = Enum.TextYAlignment.Top
Strings_.Name = "Strings_"
Strings_.Parent = Source
Strings_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Strings_.BackgroundTransparency = 1.000
Strings_.Size = UDim2.new(1, 0, 1, 0)
Strings_.ZIndex = 5
Strings_.Font = Enum.Font.Code
Strings_.Text = ""
Strings_.TextColor3 = Color3.fromRGB(229, 164, 60)
Strings_.TextSize = 14.000
Strings_.TextXAlignment = Enum.TextXAlignment.Left
Strings_.TextYAlignment = Enum.TextYAlignment.Top
Tokens_.Name = "Tokens_"
Tokens_.Parent = Source
Tokens_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Tokens_.BackgroundTransparency = 1.000
Tokens_.Size = UDim2.new(1, 0, 1, 0)
Tokens_.ZIndex = 5
Tokens_.Font = Enum.Font.Code
Tokens_.Text = ""
Tokens_.TextColor3 = Color3.fromRGB(255, 255, 255)
Tokens_.TextSize = 14.000
Tokens_.TextXAlignment = Enum.TextXAlignment.Left
Tokens_.TextYAlignment = Enum.TextYAlignment.Top
Numbers_.Name = "Numbers_"
Numbers_.Parent = Source
Numbers_.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Numbers_.BackgroundTransparency = 1.000
Numbers_.Size = UDim2.new(1, 0, 1, 0)
Numbers_.ZIndex = 4
Numbers_.Font = Enum.Font.Code
Numbers_.Text = ""
Numbers_.TextColor3 = Color3.fromRGB(142, 71, 213)
Numbers_.TextSize = 14.000
Numbers_.TextXAlignment = Enum.TextXAlignment.Left
Numbers_.TextYAlignment = Enum.TextYAlignment.Top
Lines.Name = "Lines"
Lines.Parent = EditorFrame
Lines.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Lines.BackgroundTransparency = 1.000
Lines.Position = UDim2.new(-0.00924214441, 0, 0, 0)
Lines.Size = UDim2.new(0, 30, 1, 0)
Lines.ZIndex = 4
Lines.Font = Enum.Font.SourceSans
Lines.Text = "1\\n"
Lines.TextColor3 = Color3.fromRGB(255, 255, 255)
Lines.TextSize = 15.000
Lines.TextYAlignment = Enum.TextYAlignment.Top
ScrollingFrame2.Name = "ScrollingFrame2"
ScrollingFrame2.Parent = ExecuteBar
ScrollingFrame2.Active = true
ScrollingFrame2.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
ScrollingFrame2.BorderColor3 = Color3.fromRGB(40, 40, 40)
ScrollingFrame2.Position = UDim2.new(0.0127166249, 0, 0.079058826, 0)
ScrollingFrame2.Size = UDim2.new(0.973659992, 0, 0.917334437, 0)
ScrollingFrame2.Visible = false
ScrollingFrame2.ScrollBarThickness = 10
ImageLabel_3.Parent = ScrollingFrame2
ImageLabel_3.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
ImageLabel_3.BackgroundTransparency = 1.000
ImageLabel_3.BorderSizePixel = 0
ImageLabel_3.Position = UDim2.new(0.00505135441, 0, -0.0532468483, 27)
ImageLabel_3.Size = UDim2.new(0, 541, 0, 359)
ImageLabel_3.ImageTransparency = 1.000
security_2.Name = "security"
security_2.Parent = ImageLabel_3
security_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
security_2.Size = UDim2.new(0, 552, 0, 258)
security_2.Visible = false
security_2.Font = Enum.Font.SourceSans
security_2.TextColor3 = Color3.fromRGB(0, 0, 0)
security_2.TextSize = 14.000
EditorFrame_2.Name = "EditorFrame"
EditorFrame_2.Parent = ImageLabel_3
EditorFrame_2.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
EditorFrame_2.BackgroundTransparency = 1.000
EditorFrame_2.BorderColor3 = Color3.fromRGB(61, 61, 61)
EditorFrame_2.Size = UDim2.new(1, 0, 1, 0)
EditorFrame_2.ZIndex = 3
EditorFrame_2.BottomImage = "rbxassetid://148970562"
EditorFrame_2.CanvasSize = UDim2.new(0, 0, 0, 0)
EditorFrame_2.HorizontalScrollBarInset = Enum.ScrollBarInset.ScrollBar
EditorFrame_2.MidImage = "rbxassetid://148970562"
EditorFrame_2.ScrollBarThickness = 5
EditorFrame_2.TopImage = "rbxassetid://148970562"
Source_2.Name = "Source"
Source_2.Parent = EditorFrame_2
Source_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Source_2.BackgroundTransparency = 1.000
Source_2.Position = UDim2.new(0, 19, 0, 0)
Source_2.Size = UDim2.new(0.965984941, 0, 1, 0)
Source_2.ZIndex = 3
Source_2.ClearTextOnFocus = false
Source_2.Font = Enum.Font.Code
Source_2.MultiLine = true
Source_2.PlaceholderColor3 = Color3.fromRGB(204, 204, 204)
Source_2.Text = "--Welcome To KRNL Mobile!"
Source_2.TextColor3 = Color3.fromRGB(204, 204, 204)
Source_2.TextSize = 14.000
Source_2.TextXAlignment = Enum.TextXAlignment.Left
Source_2.TextYAlignment = Enum.TextYAlignment.Top
Comments__2.Name = "Comments_"
Comments__2.Parent = Source_2
Comments__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Comments__2.BackgroundTransparency = 1.000
Comments__2.Size = UDim2.new(1, 0, 1, 0)
Comments__2.ZIndex = 5
Comments__2.Font = Enum.Font.Code
Comments__2.Text = ""
Comments__2.TextColor3 = Color3.fromRGB(59, 200, 59)
Comments__2.TextSize = 14.000
Comments__2.TextXAlignment = Enum.TextXAlignment.Left
Comments__2.TextYAlignment = Enum.TextYAlignment.Top
Globals__2.Name = "Globals_"
Globals__2.Parent = Source_2
Globals__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Globals__2.BackgroundTransparency = 1.000
Globals__2.Size = UDim2.new(1, 0, 1, 0)
Globals__2.ZIndex = 5
Globals__2.Font = Enum.Font.Code
Globals__2.Text = ""
Globals__2.TextColor3 = Color3.fromRGB(85, 222, 154)
Globals__2.TextSize = 14.000
Globals__2.TextXAlignment = Enum.TextXAlignment.Left
Globals__2.TextYAlignment = Enum.TextYAlignment.Top
Keywords__2.Name = "Keywords_"
Keywords__2.Parent = Source_2
Keywords__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Keywords__2.BackgroundTransparency = 1.000
Keywords__2.Size = UDim2.new(1, 0, 1, 0)
Keywords__2.ZIndex = 5
Keywords__2.Font = Enum.Font.Code
Keywords__2.Text = ""
Keywords__2.TextColor3 = Color3.fromRGB(213, 53, 117)
Keywords__2.TextSize = 14.000
Keywords__2.TextXAlignment = Enum.TextXAlignment.Left
Keywords__2.TextYAlignment = Enum.TextYAlignment.Top
RemoteHighlight__2.Name = "RemoteHighlight_"
RemoteHighlight__2.Parent = Source_2
RemoteHighlight__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RemoteHighlight__2.BackgroundTransparency = 1.000
RemoteHighlight__2.Size = UDim2.new(1, 0, 1, 0)
RemoteHighlight__2.ZIndex = 5
RemoteHighlight__2.Font = Enum.Font.Code
RemoteHighlight__2.Text = ""
RemoteHighlight__2.TextColor3 = Color3.fromRGB(0, 144, 255)
RemoteHighlight__2.TextSize = 14.000
RemoteHighlight__2.TextXAlignment = Enum.TextXAlignment.Left
RemoteHighlight__2.TextYAlignment = Enum.TextYAlignment.Top
Strings__2.Name = "Strings_"
Strings__2.Parent = Source_2
Strings__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Strings__2.BackgroundTransparency = 1.000
Strings__2.Size = UDim2.new(1, 0, 1, 0)
Strings__2.ZIndex = 5
Strings__2.Font = Enum.Font.Code
Strings__2.Text = ""
Strings__2.TextColor3 = Color3.fromRGB(229, 164, 60)
Strings__2.TextSize = 14.000
Strings__2.TextXAlignment = Enum.TextXAlignment.Left
Strings__2.TextYAlignment = Enum.TextYAlignment.Top
Tokens__2.Name = "Tokens_"
Tokens__2.Parent = Source_2
Tokens__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Tokens__2.BackgroundTransparency = 1.000
Tokens__2.Size = UDim2.new(1, 0, 1, 0)
Tokens__2.ZIndex = 5
Tokens__2.Font = Enum.Font.Code
Tokens__2.Text = ""
Tokens__2.TextColor3 = Color3.fromRGB(255, 255, 255)
Tokens__2.TextSize = 14.000
Tokens__2.TextXAlignment = Enum.TextXAlignment.Left
Tokens__2.TextYAlignment = Enum.TextYAlignment.Top
Numbers__2.Name = "Numbers_"
Numbers__2.Parent = Source_2
Numbers__2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Numbers__2.BackgroundTransparency = 1.000
Numbers__2.Size = UDim2.new(1, 0, 1, 0)
Numbers__2.ZIndex = 4
Numbers__2.Font = Enum.Font.Code
Numbers__2.Text = ""
Numbers__2.TextColor3 = Color3.fromRGB(142, 71, 213)
Numbers__2.TextSize = 14.000
Numbers__2.TextXAlignment = Enum.TextXAlignment.Left
Numbers__2.TextYAlignment = Enum.TextYAlignment.Top
Lines_2.Name = "Lines"
Lines_2.Parent = EditorFrame_2
Lines_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Lines_2.BackgroundTransparency = 1.000
Lines_2.Position = UDim2.new(-0.00924214441, 0, 0, 0)
Lines_2.Size = UDim2.new(0, 30, 1, 0)
Lines_2.ZIndex = 4
Lines_2.Font = Enum.Font.SourceSans
Lines_2.Text = "1\\n"
Lines_2.TextColor3 = Color3.fromRGB(255, 255, 255)
Lines_2.TextSize = 15.000
Lines_2.TextYAlignment = Enum.TextYAlignment.Top
Execute.Name = "Execute"
Execute.Parent = MainGUI
Execute.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
Execute.BorderColor3 = Color3.fromRGB(44, 44, 44)
Execute.Position = UDim2.new(0.00500000967, 0, 0.910000026, 0)
Execute.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
Execute.Font = Enum.Font.Arial
Execute.Text = "EXECUTE"
Execute.TextColor3 = Color3.fromRGB(255, 255, 255)
Execute.TextScaled = true
Execute.TextSize = 14.000
Execute.TextWrapped = true
UITextSizeConstraint_16.Parent = Execute
UITextSizeConstraint_16.MaxTextSize = 14
Clear.Name = "Clear"
Clear.Parent = MainGUI
Clear.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
Clear.BorderColor3 = Color3.fromRGB(44, 44, 44)
Clear.Position = UDim2.new(0.158899993, 0, 0.910000026, 0)
Clear.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
Clear.Font = Enum.Font.Arial
Clear.Text = "CLEAR"
Clear.TextColor3 = Color3.fromRGB(255, 255, 255)
Clear.TextScaled = true
Clear.TextSize = 14.000
Clear.TextWrapped = true
UITextSizeConstraint_17.Parent = Clear
UITextSizeConstraint_17.MaxTextSize = 14
OpenFileButton.Name = "Open File Button"
OpenFileButton.Parent = MainGUI
OpenFileButton.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
OpenFileButton.BorderColor3 = Color3.fromRGB(44, 44, 44)
OpenFileButton.Position = UDim2.new(0.31099999, 0, 0.910000026, 0)
OpenFileButton.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
OpenFileButton.Font = Enum.Font.Arial
OpenFileButton.Text = "OPEN FILE"
OpenFileButton.TextColor3 = Color3.fromRGB(255, 255, 255)
OpenFileButton.TextScaled = true
OpenFileButton.TextSize = 14.000
OpenFileButton.TextWrapped = true
UITextSizeConstraint_18.Parent = OpenFileButton
UITextSizeConstraint_18.MaxTextSize = 14
SaveFileButton.Name = "Save File Button"
SaveFileButton.Parent = MainGUI
SaveFileButton.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
SaveFileButton.BorderColor3 = Color3.fromRGB(44, 44, 44)
SaveFileButton.Position = UDim2.new(0.461996198, 0, 0.910000026, 0)
SaveFileButton.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
SaveFileButton.Font = Enum.Font.Arial
SaveFileButton.Text = "SAVE FILE"
SaveFileButton.TextColor3 = Color3.fromRGB(255, 255, 255)
SaveFileButton.TextScaled = true
SaveFileButton.TextSize = 14.000
SaveFileButton.TextWrapped = true
UITextSizeConstraint_19.Parent = SaveFileButton
UITextSizeConstraint_19.MaxTextSize = 14
InjectButton.Name = "Inject Button"
InjectButton.Parent = MainGUI
InjectButton.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
InjectButton.BorderColor3 = Color3.fromRGB(44, 44, 44)
InjectButton.Position = UDim2.new(0.611999989, 0, 0.910000026, 0)
InjectButton.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
InjectButton.Font = Enum.Font.Arial
InjectButton.Text = "INJECT"
InjectButton.TextColor3 = Color3.fromRGB(255, 255, 255)
InjectButton.TextScaled = true
InjectButton.TextSize = 14.000
InjectButton.TextWrapped = true
UITextSizeConstraint_20.Parent = InjectButton
UITextSizeConstraint_20.MaxTextSize = 14
OptionButton.Name = "Option Button"
OptionButton.Parent = MainGUI
OptionButton.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
OptionButton.BorderColor3 = Color3.fromRGB(44, 44, 44)
OptionButton.Position = UDim2.new(0.84799999, 0, 0.910000026, 0)
OptionButton.Size = UDim2.new(0.143999994, 0, 0.074000001, 0)
OptionButton.Font = Enum.Font.Arial
OptionButton.Text = "OPTION"
OptionButton.TextColor3 = Color3.fromRGB(255, 255, 255)
OptionButton.TextScaled = true
OptionButton.TextSize = 14.000
OptionButton.TextWrapped = true
UITextSizeConstraint_21.Parent = OptionButton
UITextSizeConstraint_21.MaxTextSize = 14
ScriptHub.Name = "Script Hub"
ScriptHub.Parent = MainGUI
ScriptHub.Active = true
ScriptHub.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
ScriptHub.BorderColor3 = Color3.fromRGB(33, 33, 33)
ScriptHub.Position = UDim2.new(0.821767807, 0, 0.0278668515, 0)
ScriptHub.Size = UDim2.new(0.170232087, 0, 0.865870535, 0)
ScriptHub.ScrollBarThickness = 7
UIAspectRatioConstraint.Parent = KrnlGUI
UIAspectRatioConstraint.AspectRatio = 1.993
InjectedMessgae.Name = "InjectedMessgae"
InjectedMessgae.Parent = KrnlGUI
InjectedMessgae.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
InjectedMessgae.BorderColor3 = Color3.fromRGB(245, 245, 255)
InjectedMessgae.Position = UDim2.new(0.309756339, 0, 0.298481524, 0)
InjectedMessgae.Size = UDim2.new(0.347566962, 0, 0.399907291, 0)
InjectedMessgae.Visible = false
Frame_2.Parent = InjectedMessgae
Frame_2.BackgroundColor3 = Color3.fromRGB(245, 245, 255)
Frame_2.BorderColor3 = Color3.fromRGB(245, 245, 255)
Frame_2.Size = UDim2.new(1, 0, 0.224637687, 0)
Xbutton_2.Name = "X button"
Xbutton_2.Parent = Frame_2
Xbutton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Xbutton_2.BackgroundTransparency = 1.000
Xbutton_2.Position = UDim2.new(0.849372387, 0, 0, 0)
Xbutton_2.Size = UDim2.new(0.142259419, 0, 1, 0)
Xbutton_2.Font = Enum.Font.SourceSans
Xbutton_2.Text = "X"
Xbutton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
Xbutton_2.TextScaled = true
Xbutton_2.TextSize = 30.000
Xbutton_2.TextWrapped = true
UITextSizeConstraint_22.Parent = Xbutton_2
UITextSizeConstraint_22.MaxTextSize = 30
TextLabel_2.Parent = Frame_2
TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_2.BackgroundTransparency = 1.000
TextLabel_2.Position = UDim2.new(0.0379998684, 0, 0.129181385, 0)
TextLabel_2.Size = UDim2.new(0.242677823, 0, 0.85275197, 0)
TextLabel_2.Font = Enum.Font.SourceSans
TextLabel_2.Text = "Krnl"
TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
TextLabel_2.TextSize = 19.000
TextLabel_2.TextWrapped = true
TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
Frame_3.Parent = InjectedMessgae
Frame_3.BackgroundColor3 = Color3.fromRGB(245, 245, 255)
Frame_3.BorderColor3 = Color3.fromRGB(245, 245, 255)
Frame_3.Position = UDim2.new(0, 0, 0.695652127, 0)
Frame_3.Size = UDim2.new(1, 0, 0.304347813, 0)
Okbutton.Name = "Ok button"
Okbutton.Parent = Frame_3
Okbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Okbutton.BorderColor3 = Color3.fromRGB(255, 255, 255)
Okbutton.Position = UDim2.new(0.646688402, 0, 0.214285731, 0)
Okbutton.Size = UDim2.new(0.313807517, 0, 0.5, 0)
Okbutton.Font = Enum.Font.Arial
Okbutton.Text = "OK"
Okbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
Okbutton.TextScaled = true
Okbutton.TextSize = 13.000
Okbutton.TextWrapped = true
UITextSizeConstraint_23.Parent = Okbutton
UITextSizeConstraint_23.MaxTextSize = 13
TextLabel_3.Parent = InjectedMessgae
TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_3.BackgroundTransparency = 1.000
TextLabel_3.Position = UDim2.new(0.0631046072, 0, 0.379999995, 0)
TextLabel_3.Size = UDim2.new(0.870292902, 0, 0.231884062, 0)
TextLabel_3.Font = Enum.Font.SourceSans
TextLabel_3.Text = "Already injected!"
TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
TextLabel_3.TextScaled = true
TextLabel_3.TextSize = 15.000
TextLabel_3.TextWrapped = true
TextLabel_3.TextXAlignment = Enum.TextXAlignment.Left
UITextSizeConstraint_24.Parent = TextLabel_3
UITextSizeConstraint_24.MaxTextSize = 15
HScriptsHub.Name = "HScriptsHub"
HScriptsHub.Parent = KrnlGUI
HScriptsHub.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
HScriptsHub.BorderColor3 = Color3.fromRGB(43, 43, 43)
HScriptsHub.Position = UDim2.new(0.231226563, 0, 0.165179193, 0)
HScriptsHub.Size = UDim2.new(0.202141464, 0, 0.518720329, 0)
HScriptsHub.Visible = false
DexExplorer.Name = "Dex Explorer"
DexExplorer.Parent = HScriptsHub
DexExplorer.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
DexExplorer.BackgroundTransparency = 1.000
DexExplorer.Size = UDim2.new(1, 0, 0.128491625, 0)
DexExplorer.Font = Enum.Font.SourceSans
DexExplorer.Text = " Dex Explorer"
DexExplorer.TextColor3 = Color3.fromRGB(255, 255, 255)
DexExplorer.TextScaled = true
DexExplorer.TextSize = 15.000
DexExplorer.TextWrapped = true
DexExplorer.TextXAlignment = Enum.TextXAlignment.Left
UITextSizeConstraint_25.Parent = DexExplorer
UITextSizeConstraint_25.MaxTextSize = 15
OpenGui.Name = "OpenGui"
OpenGui.Parent = HScriptsHub
OpenGui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
OpenGui.BackgroundTransparency = 1.000
OpenGui.Position = UDim2.new(0, 0, 0.128491625, 0)
OpenGui.Size = UDim2.new(1, 0, 0.128491625, 0)
OpenGui.Font = Enum.Font.SourceSans
OpenGui.Text = " OpenGui"
OpenGui.TextColor3 = Color3.fromRGB(255, 255, 255)
OpenGui.TextScaled = true
OpenGui.TextSize = 15.000
OpenGui.TextWrapped = true
OpenGui.TextXAlignment = Enum.TextXAlignment.Left
UITextSizeConstraint_26.Parent = OpenGui
UITextSizeConstraint_26.MaxTextSize = 15
RemoteSpy.Name = "RemoteSpy"
RemoteSpy.Parent = HScriptsHub
RemoteSpy.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RemoteSpy.BackgroundTransparency = 1.000
RemoteSpy.Position = UDim2.new(0, 0, 0.25698325, 0)
RemoteSpy.Size = UDim2.new(1, 0, 0.128491625, 0)
RemoteSpy.Font = Enum.Font.SourceSans
RemoteSpy.Text = " Remote Spy"
RemoteSpy.TextColor3 = Color3.fromRGB(255, 255, 255)
RemoteSpy.TextScaled = true
RemoteSpy.TextSize = 15.000
RemoteSpy.TextWrapped = true
RemoteSpy.TextXAlignment = Enum.TextXAlignment.Left
UITextSizeConstraint_27.Parent = RemoteSpy
UITextSizeConstraint_27.MaxTextSize = 15
DarkDex.Name = "DarkDex"
DarkDex.Parent = HScriptsHub
DarkDex.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
DarkDex.BackgroundTransparency = 1.000
DarkDex.Position = UDim2.new(0, 0, 0.385474861, 0)
DarkDex.Size = UDim2.new(1, 0, 0.128491625, 0)
DarkDex.Font = Enum.Font.SourceSans
DarkDex.Text = " Dark Dex"
DarkDex.TextColor3 = Color3.fromRGB(255, 255, 255)
DarkDex.TextScaled = true
DarkDex.TextSize = 15.000
DarkDex.TextWrapped = true
DarkDex.TextXAlignment = Enum.TextXAlignment.Left
UITextSizeConstraint_28.Parent = DarkDex
UITextSizeConstraint_28.MaxTextSize = 15
UnamedEsp.Name = "UnamedEsp"
UnamedEsp.Parent = HScriptsHub
UnamedEsp.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
UnamedEsp.BackgroundTransparency = 1.000
UnamedEsp.Position = UDim2.new(0, 0, 0.513966501, 0)
UnamedEsp.Size = UDim2.new(1, 0, 0.128491625, 0)
UnamedEsp.Font = Enum.Font.SourceSans
UnamedEsp.Text = " Unnamed ESP"
UnamedEsp.TextColor3 = Color3.fromRGB(255, 255, 255)