-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathexecutor.lua
More file actions
1601 lines (1371 loc) · 61.2 KB
/
executor.lua
File metadata and controls
1601 lines (1371 loc) · 61.2 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
-- Executor (by dnezero)
local cloneref = cloneref or function(o) return o end
local Services = Services or setmetatable({}, {
__index = function(self, name)
local success, cache = pcall(function()
return cloneref(game:GetService(name))
end)
if success then
rawset(self, name, cache)
return cache
end
end
})
local function GuiParent()
if PARENT then return PARENT end
local CoreGui = Services.CoreGui or cloneref(Services.Players.LocalPlayer:FindFirstChildWhichIsA("PlayerGui"))
local MAX_DISPLAY_ORDER = 2147483647
local 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
if get_hidden_gui or gethui then
local hiddenUI = get_hidden_gui or gethui
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
Main.ResetOnSpawn = false
Main.DisplayOrder = MAX_DISPLAY_ORDER
Main.Parent = hiddenUI()
CoreGui = Main
elseif (not is_sirhurt_closure) and (syn and syn.protect_gui) then
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
Main.ResetOnSpawn = false
Main.DisplayOrder = MAX_DISPLAY_ORDER
syn.protect_gui(Main)
Main.Parent = CoreGui
CoreGui = Main
elseif CoreGui:FindFirstChild("RobloxGui") then
CoreGui = CoreGui.RobloxGui
else
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
Main.ResetOnSpawn = false
Main.DisplayOrder = MAX_DISPLAY_ORDER
Main.Parent = CoreGui
CoreGui = Main
end
return CoreGui
end
--[=[
d888b db db d888888b .d888b. db db db .d8b.
88' Y8b 88 88 `88' VP `8D 88 88 88 d8' `8b
88 88 88 88 odD' 88 88 88 88ooo88
88 ooo 88 88 88 .88' 88 88 88 88~~~88
88. ~8~ 88b d88 .88. j88. 88booo. 88b d88 88 88 @uniquadev
Y888P ~Y8888P' Y888888P 888888D Y88888P ~Y8888P' YP YP CONVERTER
]=]
-- Instances: 48 | Scripts: 16 | Modules: 0 | Tags: 0
local G2L = {}
-- StarterGui.Exec
--G2L["1"] = Instance.new("ScreenGui", game.CoreGui)
--G2L["1"]["IgnoreGuiInset"] = true
--G2L["1"]["ScreenInsets"] = Enum.ScreenInsets.DeviceSafeInsets
--G2L["1"]["Name"] = [[Exec]]
--G2L["1"]["ZIndexBehavior"] = Enum.ZIndexBehavior.Sibling
--G2L["1"]["ResetOnSpawn"] = false
G2L["1"] = GuiParent()
-- StarterGui.Exec.Topbar
G2L["2"] = Instance.new("Frame", G2L["1"])
G2L["2"]["BorderSizePixel"] = 0
G2L["2"]["BackgroundColor3"] = Color3.fromRGB(51, 51, 51)
G2L["2"]["Size"] = UDim2.new(0, 473, 0, 20)
G2L["2"]["Position"] = UDim2.new(0.3546, 0, 0.33567, 0)
G2L["2"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["2"]["Name"] = [[Topbar]]
-- StarterGui.Exec.Topbar.Drag
G2L["3"] = Instance.new("LocalScript", G2L["2"])
G2L["3"]["Name"] = [[Drag]]
-- StarterGui.Exec.Topbar.TextLabel
G2L["4"] = Instance.new("TextLabel", G2L["2"])
G2L["4"]["TextWrapped"] = true
G2L["4"]["BorderSizePixel"] = 0
G2L["4"]["TextSize"] = 16
G2L["4"]["BackgroundColor3"] = Color3.fromRGB(61, 61, 61)
G2L["4"]["FontFace"] = Font.new([[rbxasset://fonts/families/SourceSansPro.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["4"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["4"]["BackgroundTransparency"] = 1
G2L["4"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["4"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["4"]["Text"] = [[Executor (by dnezero)]]
-- StarterGui.Exec.Topbar.ImageButton
G2L["5"] = Instance.new("ImageButton", G2L["2"])
G2L["5"]["BorderSizePixel"] = 0
G2L["5"]["BackgroundTransparency"] = 1
G2L["5"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["5"]["Image"] = [[rbxassetid://11293981586]]
G2L["5"]["Size"] = UDim2.new(0, 17, 0, 17)
G2L["5"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["5"]["Position"] = UDim2.new(0.95137, 0, 0.05, 0)
-- StarterGui.Exec.Topbar.ImageButton.LocalScript
G2L["6"] = Instance.new("LocalScript", G2L["5"])
-- StarterGui.Exec.Topbar.ImageButton
G2L["7"] = Instance.new("ImageButton", G2L["2"])
G2L["7"]["BorderSizePixel"] = 0
G2L["7"]["BackgroundTransparency"] = 1
G2L["7"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["7"]["Image"] = [[rbxassetid://11421092947]]
G2L["7"]["Size"] = UDim2.new(0, 17, 0, 17)
G2L["7"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["7"]["Position"] = UDim2.new(0.89429, 0, 0.05, 0)
-- StarterGui.Exec.Topbar.ImageButton.LocalScript
G2L["8"] = Instance.new("LocalScript", G2L["7"])
-- StarterGui.Exec.Topbar.MainStuff
G2L["9"] = Instance.new("Frame", G2L["2"])
G2L["9"]["BorderSizePixel"] = 0
G2L["9"]["BackgroundColor3"] = Color3.fromRGB(41, 41, 41)
G2L["9"]["Size"] = UDim2.new(0, 473, 0, 241)
G2L["9"]["Position"] = UDim2.new(0, 0, 1, 0)
G2L["9"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["9"]["Name"] = [[MainStuff]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame
G2L["a"] = Instance.new("ScrollingFrame", G2L["9"])
G2L["a"]["Active"] = true
G2L["a"]["BorderSizePixel"] = 0
G2L["a"]["CanvasSize"] = UDim2.new(1, 0, 1, 0)
G2L["a"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["a"]["Size"] = UDim2.new(1, 0, 0.86975, 0)
G2L["a"]["ScrollBarImageColor3"] = Color3.fromRGB(152, 152, 152)
G2L["a"]["Position"] = UDim2.new(-0, 0, 0, 0)
G2L["a"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["a"]["ScrollBarThickness"] = 1
G2L["a"]["BackgroundTransparency"] = 1
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
G2L["b"] = Instance.new("LocalScript", G2L["a"])
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
G2L["c"] = Instance.new("LocalScript", G2L["a"])
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
G2L["d"] = Instance.new("LocalScript", G2L["a"])
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.Lines
G2L["e"] = Instance.new("TextLabel", G2L["a"])
G2L["e"]["BorderSizePixel"] = 0
G2L["e"]["TextSize"] = 14
G2L["e"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["e"]["BackgroundColor3"] = Color3.fromRGB(94, 94, 94)
G2L["e"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["e"]["TextColor3"] = Color3.fromRGB(152, 152, 152)
G2L["e"]["BackgroundTransparency"] = 1
G2L["e"]["Size"] = UDim2.new(0, 40, 0, 239)
G2L["e"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["e"]["Text"] = [[1
]]
G2L["e"]["Name"] = [[Lines]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.Lines.LocalScript
G2L["f"] = Instance.new("LocalScript", G2L["e"])
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel
G2L["10"] = Instance.new("TextBox", G2L["a"])
G2L["10"]["Name"] = [[ResponseLabel]]
G2L["10"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["10"]["BorderSizePixel"] = 0
G2L["10"]["TextSize"] = 14
G2L["10"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["10"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["10"]["BackgroundColor3"] = Color3.fromRGB(32, 32, 32)
G2L["10"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["10"]["MultiLine"] = true
G2L["10"]["ClearTextOnFocus"] = false
G2L["10"]["Size"] = UDim2.new(1, 0, 0, 239)
G2L["10"]["Position"] = UDim2.new(0, 50, 0, 0)
G2L["10"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["10"]["Text"] = [[print("Hello world")]]
G2L["10"]["BackgroundTransparency"] = 1
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.LocalScript
G2L["11"] = Instance.new("LocalScript", G2L["10"])
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Comments_
G2L["12"] = Instance.new("TextLabel", G2L["10"])
G2L["12"]["ZIndex"] = 5
G2L["12"]["TextSize"] = 14
G2L["12"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["12"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["12"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["12"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["12"]["TextColor3"] = Color3.fromRGB(61, 202, 61)
G2L["12"]["BackgroundTransparency"] = 1
G2L["12"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["12"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["12"]["Text"] = [[]]
G2L["12"]["Name"] = [[Comments_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Globals_
G2L["13"] = Instance.new("TextLabel", G2L["10"])
G2L["13"]["ZIndex"] = 5
G2L["13"]["TextSize"] = 14
G2L["13"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["13"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["13"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["13"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["13"]["TextColor3"] = Color3.fromRGB(134, 216, 249)
G2L["13"]["BackgroundTransparency"] = 1
G2L["13"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["13"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["13"]["Text"] = [[]]
G2L["13"]["Name"] = [[Globals_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Keywords_
G2L["14"] = Instance.new("TextLabel", G2L["10"])
G2L["14"]["ZIndex"] = 5
G2L["14"]["TextSize"] = 14
G2L["14"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["14"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["14"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["14"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["14"]["TextColor3"] = Color3.fromRGB(250, 111, 126)
G2L["14"]["BackgroundTransparency"] = 1
G2L["14"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["14"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["14"]["Text"] = [[]]
G2L["14"]["Name"] = [[Keywords_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Numbers_
G2L["15"] = Instance.new("TextLabel", G2L["10"])
G2L["15"]["ZIndex"] = 4
G2L["15"]["TextSize"] = 14
G2L["15"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["15"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["15"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["15"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["15"]["TextColor3"] = Color3.fromRGB(255, 200, 0)
G2L["15"]["BackgroundTransparency"] = 1
G2L["15"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["15"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["15"]["Text"] = [[]]
G2L["15"]["Name"] = [[Numbers_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.RemoteHighlight_
G2L["16"] = Instance.new("TextLabel", G2L["10"])
G2L["16"]["ZIndex"] = 5
G2L["16"]["TextSize"] = 14
G2L["16"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["16"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["16"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["16"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["16"]["TextColor3"] = Color3.fromRGB(0, 146, 255)
G2L["16"]["BackgroundTransparency"] = 1
G2L["16"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["16"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["16"]["Text"] = [[]]
G2L["16"]["Name"] = [[RemoteHighlight_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Strings_
G2L["17"] = Instance.new("TextLabel", G2L["10"])
G2L["17"]["ZIndex"] = 5
G2L["17"]["TextSize"] = 14
G2L["17"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["17"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["17"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["17"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["17"]["TextColor3"] = Color3.fromRGB(175, 243, 151)
G2L["17"]["BackgroundTransparency"] = 1
G2L["17"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["17"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["17"]["Text"] = [[]]
G2L["17"]["Name"] = [[Strings_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.Tokens_
G2L["18"] = Instance.new("TextLabel", G2L["10"])
G2L["18"]["ZIndex"] = 5
G2L["18"]["TextSize"] = 14
G2L["18"]["TextXAlignment"] = Enum.TextXAlignment.Left
G2L["18"]["TextYAlignment"] = Enum.TextYAlignment.Top
G2L["18"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["18"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["18"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["18"]["BackgroundTransparency"] = 1
G2L["18"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["18"]["BorderColor3"] = Color3.fromRGB(29, 44, 55)
G2L["18"]["Text"] = [[]]
G2L["18"]["Name"] = [[Tokens_]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.LineHighlight
G2L["19"] = Instance.new("Frame", G2L["10"])
G2L["19"]["ZIndex"] = 0
G2L["19"]["BorderSizePixel"] = 0
G2L["19"]["BackgroundColor3"] = Color3.fromRGB(51, 51, 51)
G2L["19"]["Name"] = [[LineHighlight]]
G2L["19"]["BackgroundTransparency"] = 0.6
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.CustomCaret
G2L["1a"] = Instance.new("Frame", G2L["10"])
G2L["1a"]["Visible"] = false
G2L["1a"]["ZIndex"] = 2
G2L["1a"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255)
G2L["1a"]["Size"] = UDim2.new(0, 1, 0, 16)
G2L["1a"]["Name"] = [[CustomCaret]]
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.ResponseLabel.SelectionHighlight
G2L["1b"] = Instance.new("Frame", G2L["10"])
G2L["1b"]["Visible"] = false
G2L["1b"]["BorderSizePixel"] = 0
G2L["1b"]["BackgroundColor3"] = Color3.fromRGB(0, 121, 216)
G2L["1b"]["Name"] = [[SelectionHighlight]]
G2L["1b"]["BackgroundTransparency"] = 0.7
-- StarterGui.Exec.Topbar.MainStuff.TextButton
G2L["1c"] = Instance.new("TextButton", G2L["9"])
G2L["1c"]["TextWrapped"] = true
G2L["1c"]["BorderSizePixel"] = 0
G2L["1c"]["TextSize"] = 16
G2L["1c"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["1c"]["BackgroundColor3"] = Color3.fromRGB(61, 61, 61)
G2L["1c"]["FontFace"] = Font.new([[rbxasset://fonts/families/SourceSansPro.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["1c"]["Size"] = UDim2.new(0, 90, 0, 20)
G2L["1c"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["1c"]["Text"] = [[Execute]]
G2L["1c"]["Position"] = UDim2.new(0.795, 0, 0.895, 0)
-- StarterGui.Exec.Topbar.MainStuff.TextButton.LocalScript
G2L["1d"] = Instance.new("LocalScript", G2L["1c"])
-- StarterGui.Exec.Topbar.MainStuff.TextButton
G2L["1e"] = Instance.new("TextButton", G2L["9"])
G2L["1e"]["BorderSizePixel"] = 0
G2L["1e"]["TextSize"] = 16
G2L["1e"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["1e"]["BackgroundColor3"] = Color3.fromRGB(61, 61, 61)
G2L["1e"]["FontFace"] = Font.new([[rbxasset://fonts/families/SourceSansPro.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["1e"]["Size"] = UDim2.new(0, 90, 0, 20)
G2L["1e"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["1e"]["Text"] = [[Clear]]
G2L["1e"]["Position"] = UDim2.new(0.58778, 0, 0.895, 0)
-- StarterGui.Exec.Topbar.MainStuff.TextButton.LocalScript
G2L["1f"] = Instance.new("LocalScript", G2L["1e"])
-- StarterGui.Exec.Topbar.MainStuff.TextButton
G2L["20"] = Instance.new("TextButton", G2L["9"])
G2L["20"]["BorderSizePixel"] = 0
G2L["20"]["TextSize"] = 16
G2L["20"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["20"]["BackgroundColor3"] = Color3.fromRGB(61, 61, 61)
G2L["20"]["FontFace"] = Font.new([[rbxasset://fonts/families/SourceSansPro.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["20"]["Size"] = UDim2.new(0, 89, 0, 20)
G2L["20"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["20"]["Text"] = [[Save]]
G2L["20"]["Position"] = UDim2.new(0.38485, 0, 0.895, 0)
-- StarterGui.Exec.Topbar.MainStuff.TextButton.LocalScript
G2L["21"] = Instance.new("LocalScript", G2L["20"])
-- StarterGui.Exec.Topbar.MainStuff.TextButton
G2L["22"] = Instance.new("TextButton", G2L["9"])
G2L["22"]["BorderSizePixel"] = 0
G2L["22"]["TextSize"] = 16
G2L["22"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["22"]["BackgroundColor3"] = Color3.fromRGB(61, 61, 61)
G2L["22"]["FontFace"] = Font.new([[rbxasset://fonts/families/SourceSansPro.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["22"]["Size"] = UDim2.new(0, 90, 0, 20)
G2L["22"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["22"]["Text"] = [[Open]]
G2L["22"]["Position"] = UDim2.new(0.177, 0, 0.895, 0)
-- StarterGui.Exec.Topbar.MainStuff.TextButton.LocalScript
G2L["23"] = Instance.new("LocalScript", G2L["22"])
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog
G2L["24"] = Instance.new("Frame", G2L["9"])
G2L["24"]["Visible"] = false
G2L["24"]["BorderSizePixel"] = 0
G2L["24"]["BackgroundColor3"] = Color3.fromRGB(0, 0, 0)
G2L["24"]["Size"] = UDim2.new(1, 0, 1, 0)
G2L["24"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["24"]["Name"] = [[opensavedialog]]
G2L["24"]["BackgroundTransparency"] = 0.2
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save
G2L["25"] = Instance.new("Frame", G2L["24"])
G2L["25"]["Visible"] = false
G2L["25"]["BorderSizePixel"] = 0
G2L["25"]["BackgroundColor3"] = Color3.fromRGB(31, 31, 31)
G2L["25"]["AnchorPoint"] = Vector2.new(0.5, 0.5)
G2L["25"]["Size"] = UDim2.new(0, 327, 0, 76)
G2L["25"]["Position"] = UDim2.new(0.5, 0, 0.5, 0)
G2L["25"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["25"]["Name"] = [[save]]
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save.TextBox
G2L["26"] = Instance.new("TextBox", G2L["25"])
G2L["26"]["BorderSizePixel"] = 0
G2L["26"]["TextWrapped"] = true
G2L["26"]["TextSize"] = 18
G2L["26"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["26"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["26"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["26"]["ClearTextOnFocus"] = false
G2L["26"]["PlaceholderText"] = [[file name...]]
G2L["26"]["Size"] = UDim2.new(0, 308, 0, 28)
G2L["26"]["Position"] = UDim2.new(0.03058, 0, 0.11368, 0)
G2L["26"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["26"]["Text"] = [[]]
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save.TextButton
G2L["27"] = Instance.new("TextButton", G2L["25"])
G2L["27"]["BorderSizePixel"] = 0
G2L["27"]["TextSize"] = 18
G2L["27"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["27"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["27"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["27"]["Size"] = UDim2.new(0, 100, 0, 23)
G2L["27"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["27"]["Text"] = [[Save]]
G2L["27"]["Position"] = UDim2.new(0.66667, 0, 0.57895, 0)
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save.TextButton.LocalScript
G2L["28"] = Instance.new("LocalScript", G2L["27"])
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save.TextButton
G2L["29"] = Instance.new("TextButton", G2L["25"])
G2L["29"]["BorderSizePixel"] = 0
G2L["29"]["TextSize"] = 18
G2L["29"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["29"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["29"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["29"]["Size"] = UDim2.new(0, 100, 0, 23)
G2L["29"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["29"]["Text"] = [[Cancel]]
G2L["29"]["Position"] = UDim2.new(0.34557, 0, 0.57895, 0)
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.save.TextButton.LocalScript
G2L["2a"] = Instance.new("LocalScript", G2L["29"])
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open
G2L["2b"] = Instance.new("Frame", G2L["24"])
G2L["2b"]["Visible"] = false
G2L["2b"]["BorderSizePixel"] = 0
G2L["2b"]["BackgroundColor3"] = Color3.fromRGB(31, 31, 31)
G2L["2b"]["AnchorPoint"] = Vector2.new(0.5, 0.5)
G2L["2b"]["Size"] = UDim2.new(0, 327, 0, 76)
G2L["2b"]["Position"] = UDim2.new(0.5, 0, 0.5, 0)
G2L["2b"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["2b"]["Name"] = [[open]]
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open.TextBox
G2L["2c"] = Instance.new("TextBox", G2L["2b"])
G2L["2c"]["BorderSizePixel"] = 0
G2L["2c"]["TextWrapped"] = true
G2L["2c"]["TextSize"] = 18
G2L["2c"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["2c"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["2c"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["2c"]["ClearTextOnFocus"] = false
G2L["2c"]["PlaceholderText"] = [[file name...]]
G2L["2c"]["Size"] = UDim2.new(0, 308, 0, 28)
G2L["2c"]["Position"] = UDim2.new(0.03058, 0, 0.11368, 0)
G2L["2c"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["2c"]["Text"] = [[]]
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open.TextButton
G2L["2d"] = Instance.new("TextButton", G2L["2b"])
G2L["2d"]["BorderSizePixel"] = 0
G2L["2d"]["TextSize"] = 18
G2L["2d"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["2d"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["2d"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["2d"]["Size"] = UDim2.new(0, 100, 0, 23)
G2L["2d"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["2d"]["Text"] = [[Open]]
G2L["2d"]["Position"] = UDim2.new(0.66667, 0, 0.57895, 0)
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open.TextButton.LocalScript
G2L["2e"] = Instance.new("LocalScript", G2L["2d"])
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open.TextButton
G2L["2f"] = Instance.new("TextButton", G2L["2b"])
G2L["2f"]["BorderSizePixel"] = 0
G2L["2f"]["TextSize"] = 18
G2L["2f"]["TextColor3"] = Color3.fromRGB(255, 255, 255)
G2L["2f"]["BackgroundColor3"] = Color3.fromRGB(81, 81, 81)
G2L["2f"]["FontFace"] = Font.new([[rbxasset://fonts/families/Inconsolata.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal)
G2L["2f"]["Size"] = UDim2.new(0, 100, 0, 23)
G2L["2f"]["BorderColor3"] = Color3.fromRGB(0, 0, 0)
G2L["2f"]["Text"] = [[Cancel]]
G2L["2f"]["Position"] = UDim2.new(0.34557, 0, 0.57895, 0)
-- StarterGui.Exec.Topbar.MainStuff.opensavedialog.open.TextButton.LocalScript
G2L["30"] = Instance.new("LocalScript", G2L["2f"])
-- StarterGui.Exec.Topbar.Drag
local function C_3()
local script = G2L["3"]
local UserInputService = Services.UserInputService
local gui = script.Parent
local dragging
local dragInput
local dragStart
local startPos
local function update(input)
local delta = input.Position - dragStart
gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
end
gui.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = gui.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
gui.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
UserInputService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
update(input)
end
end)
end
task.spawn(C_3)
-- StarterGui.Exec.Topbar.ImageButton.LocalScript
local function C_6()
local script = G2L["6"]
script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent:Destroy() -- yeah change this stuff if u need to this is pointed to topbar frame
end)
end
task.spawn(C_6)
-- StarterGui.Exec.Topbar.ImageButton.LocalScript
local function C_8()
local script = G2L["8"]
script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.MainStuff.Visible = not script.Parent.Parent.MainStuff.Visible
-- woah so cool right
end)
end
task.spawn(C_8)
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
local function C_b()
local script = G2L["b"]
-- This LocalScript ensures a ScrollingFrame automatically follows the caret
-- of a multiline TextBox, keeping the cursor visible by only scrolling vertically.
-- Get a reference to the services we'll need.
local TweenService = Services.TweenService
local TextService = Services.TextService
-- Get a reference to the ScrollingFrame and TextBox.
local scrollingFrame = script.Parent
local textBox = scrollingFrame:FindFirstChildOfClass("TextBox")
-- A safety check to ensure the TextBox exists.
if not textBox then
warn("LocalScript: Could not find a TextBox inside the ScrollingFrame. Script will not run.")
return
end
-- Define the tween animation properties for smooth scrolling.
local tweenInfo = TweenInfo.new(
0.1, -- Time: Duration of the tween.
Enum.EasingStyle.Quad, -- EasingStyle: Defines the animation curve.
Enum.EasingDirection.Out -- EasingDirection: Applies the style at the end of the animation.
)
-- Function to calculate the required CanvasSize based on the TextBox content.
-- This function uses TextService, which is the most reliable way to get text dimensions.
local function getRequiredCanvasSize()
-- We need to get the size of the text with the current TextBox properties.
-- We'll use the TextBox's AbsoluteSize.X to ensure it's calculated for the correct width.
local textSize = TextService:GetTextSize(
textBox.Text,
textBox.TextSize,
textBox.Font,
Vector2.new(textBox.AbsoluteSize.X, 10000) -- Use a very large Y to allow for multiline wrapping.
)
-- Add a little extra padding to the height.
local padding = 10
local newHeight = textSize.Y + padding
-- Ensure the canvas is at least as tall as the visible TextBox.
local requiredHeight = math.max(newHeight, textBox.AbsoluteSize.Y)
-- Return the new CanvasSize as a UDim2.
-- The X scale is 1, so it matches the width of the frame.
return UDim2.new(1, 0, 0, requiredHeight)
end
-- Function to scroll the frame to the bottom, but only on the Y-axis.
local function scrollToBottom()
-- First, ensure the CanvasSize is large enough for the text.
scrollingFrame.CanvasSize = getRequiredCanvasSize()
-- Calculate the maximum vertical scroll position.
local maxScrollPositionY = scrollingFrame.CanvasSize.Y.Offset - scrollingFrame.AbsoluteSize.Y
-- Ensure max scroll position is not negative.
if maxScrollPositionY < 0 then
maxScrollPositionY = 0
end
-- Create a goal table for the tween. We use the current X position
-- to ensure we don't scroll horizontally.
local goal = {
CanvasPosition = Vector2.new(scrollingFrame.CanvasPosition.X, maxScrollPositionY)
}
-- Create and play the tween.
local tween = TweenService:Create(scrollingFrame, tweenInfo, goal)
tween:Play()
end
-- Connect to the Text's Changed signal. This fires when the text property changes,
-- and is a reliable way to detect when a user types, pastes, or deletes text.
textBox:GetPropertyChangedSignal("Text"):Connect(function()
scrollToBottom()
end)
-- Connect to the AbsoluteSize of the TextBox and ScrollingFrame.
-- This ensures scrolling is updated if the UI is resized.
textBox:GetPropertyChangedSignal("AbsoluteSize"):Connect(function()
scrollToBottom()
end)
scrollingFrame:GetPropertyChangedSignal("AbsoluteSize"):Connect(function()
scrollToBottom()
end)
-- Perform an initial scroll to the bottom when the script loads.
task.defer(scrollToBottom)
end
task.spawn(C_b)
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
local function C_c()
local script = G2L["c"]
local RunService = Services.RunService
local TextService = Services.TextService
local scrollingFrame = script.Parent
local function getCaretLineInfo(textBox)
local text = textBox.Text
local cursorPos = textBox.CursorPosition - 1
if cursorPos < 0 then return 1 end
local lineCount = 1
for i = 1, cursorPos do
if text:sub(i, i) == "\n" then
lineCount = lineCount + 1
end
end
return lineCount
end
local function updateScrolling()
local textBox = nil
local padding = scrollingFrame:FindFirstChildOfClass("UIPadding")
local leftPadding = padding and padding.PaddingLeft.Offset or 0
for _, child in ipairs(scrollingFrame:GetChildren()) do
if child:IsA("TextBox") then
textBox = child
break
end
end
if textBox then
local textSize = textBox.TextSize
local font = textBox.Font
local availableWidth = scrollingFrame.AbsoluteSize.X - leftPadding
local textBounds = TextService:GetTextSize(textBox.Text, textSize, font, Vector2.new(availableWidth, 99999))
local contentHeight = textBounds.Y
-- Set CanvasSize to fill width and adjust height only
scrollingFrame.CanvasSize = UDim2.new(1, 0, 0, math.max(scrollingFrame.AbsoluteSize.Y, contentHeight + 5))
-- Scroll to caret vertically
if textBox:IsFocused() then
local lineNumber = getCaretLineInfo(textBox)
local lineHeight = TextService:GetTextSize("A", textSize, font, Vector2.new(0, 0)).Y
local targetY = (lineNumber - 1) * lineHeight
local maxCanvasY = math.max(0, contentHeight - scrollingFrame.AbsoluteSize.Y)
local visibleHeight = scrollingFrame.AbsoluteSize.Y
local newCanvasPositionY = math.clamp(targetY - (visibleHeight / 2), 0, maxCanvasY)
scrollingFrame.CanvasPosition = Vector2.new(0, newCanvasPositionY) -- Reset X to 0, disable horizontal
end
end
end
-- Event connections
scrollingFrame.ChildAdded:Connect(function(child)
if child:IsA("TextBox") then
updateScrolling()
child:GetPropertyChangedSignal("Text"):Connect(updateScrolling)
child:GetPropertyChangedSignal("CursorPosition"):Connect(updateScrolling)
child.Focused:Connect(updateScrolling)
child.FocusLost:Connect(updateScrolling)
end
end)
scrollingFrame.ChildRemoved:Connect(updateScrolling)
for _, child in ipairs(scrollingFrame:GetChildren()) do
if child:IsA("TextBox") then
child:GetPropertyChangedSignal("Text"):Connect(updateScrolling)
child:GetPropertyChangedSignal("CursorPosition"):Connect(updateScrolling)
child.Focused:Connect(updateScrolling)
child.FocusLost:Connect(updateScrolling)
end
end
-- Initial call and resize listener
updateScrolling()
scrollingFrame:GetPropertyChangedSignal("AbsoluteSize"):Connect(updateScrolling)
end
task.spawn(C_c)
-- StarterGui.Exec.Topbar.MainStuff.ScrollingFrame.LocalScript
local function C_d()
local script = G2L["d"]
local lua_keywords = {
"and", "break", "do", "else", "elseif", "end", "false", "for",
"function", "goto", "if", "in", "local", "nil", "not", "or",
"repeat", "return", "then", "true", "until", "while"
}
local global_env = {
-- Standard Roblox/Lua globals
"getrawmetatable", "game", "workspace", "script", "math", "string",
"table", "print", "wait", "BrickColor", "Color3", "next", "pairs",
"ipairs", "select", "unpack", "Instance", "Vector2", "Vector3",
"CFrame", "Ray", "UDim2", "Enum", "assert", "error", "warn",
"tick", "loadstring", "_G", "shared", "getfenv", "setfenv",
"newproxy", "setmetatable", "getmetatable", "os", "debug", "pcall",
"ypcall", "xpcall", "rawequal", "rawset", "rawget", "tonumber",
"tostring", "type", "typeof", "_VERSION", "coroutine", "delay",
"require", "spawn", "LoadLibrary", "settings", "stats", "time",
"UserSettings", "version", "Axes", "ColorSequence", "Faces",
"ColorSequenceKeypoint", "NumberRange", "NumberSequence",
"NumberSequenceKeypoint", "gcinfo", "elapsedTime", "collectgarbage",
"PhysicalProperties", "Rect", "Region3", "Region3int16", "UDim",
"Vector2int16", "Vector3int16",
-- Exploit environment functions
"cache.invalidate", "cache.iscached", "cache.replace", "cloneref",
"compareinstances", "base64_encode", "base64_decode", "debug.getconstant",
"debug.getconstants", "debug.getinfo", "debug.getproto", "debug.getprotos",
"debug.getupvalue", "debug.getupvalues", "debug.setconstant", "getgc",
"getloadedmodules", "getrunningscripts", "getscripts", "getsenv",
"hookmetamethod", "iscclosure", "isexecutorclosure", "islclosure",
"newcclosure", "setreadonly", "lz4compress", "lz4decompress",
"getscriptclosure", "request", "getcallbackvalue", "listfiles",
"writefile", "isfolder", "makefolder", "appendfile", "isfile",
"delfolder", "delfile", "loadfile", "gethui", "getrawmetatable",
"isreadonly", "getnamecallmethod", "setscriptable", "isscriptable",
"getinstances", "getnilinstances", "fireproximityprompt", "setrawmetatable",
"getthreadidentity", "setthreadidentity", "getrenderproperty",
"setrenderproperty", "Drawing.new", "Drawing.Fonts", "cleardrawcache",
"loadstring", "debug.setupvalue", "readfile", "getscriptbytecode",
"getcallingscript", "isrenderobj", "firesignal", "getscripthash",
"identifyexecutor", "getfunctionhash", "gethiddenproperty", "debug.getstack",
"firetouchinterest", "filtergc", "getrenv", "crypt.decrypt",
"crypt.generatebytes", "crypt.generatekey", "getconnections",
"checkcaller", "crypt.encrypt", "fireclickdetector", "debug.setstack",
"decompile", "hookfunction", "restorefunction", "clonefunction",
"getgenv", "getcustomasset", "sethiddenproperty", "WebSocket.connect",
"replicatesignal", "crypt.hash",
-- Additional common exploit functions
"getreg", "getthreadcontext", "setthreadcontext", "getsignalcons",
"firesignal", "mouse1click", "mouse1press", "mouse1release",
"mouse2click", "mouse2press", "mouse2release", "mousescroll",
"keyclick", "keypress", "keyrelease", "mousemoverel", "mousemoveabs",
"iswindowactive", "getwindows", "setwindow", "getclipboard",
"setclipboard", "messagebox", "getcursorpos", "setcursorpos",
"isrbxactive", "getfpscap", "setfpscap", "getidentity",
"setidentity", "getscripts", "getmodules", "getloadedmodules",
"getnilinstances", "getplayers", "getobjects", "getchildren",
"getdescendants", "findfirstchild", "findfirstchildofclass",
"findfirstchildwhichisA", "isA", "clone", "destroy", "kick",
"crash", "shutdown", "disconnect", "connect", "wait", "delay",
"tick", "time", "clock", "date", "exit", "quit", "restart",
"inject", "attach", "detach", "isactive", "is injected",
"getexecutorname", "getexecutorversion", "getscript", "runscript",
"loadstring", "dostring", "compile", "decompile", "hook",
"unhook", "hookfunction", "unhookfunction", "hookmetamethod",
"unhookmetamethod", "newcclosure", "newfunction", "dumpstring",
"getconstants", "setconstants", "getupvalues", "setupvalues",
"getstack", "setstack", "getinfo", "getproto", "getprotos",
"getlocal", "setlocal", "getvararg", "setvararg", "getfenv",
"setfenv", "getgenv", "setgenv", "getrenv", "setrenv", "getsenv",
"setsenv", "gethui", "sethui", "getscripthash", "getfunctionhash",
"gethiddenproperty", "sethiddenproperty", "getcustomasset",
"saveinstance", "saveplace", "savegame", "loadplace", "loadgame",
"getplaceid", "getgameid", "getjobid", "getplayer", "getcharacter",
"gethumanoid", "getroot", "gethead", "gettorso", "getlimbs",
"getcam", "setcam", "getviewsize", "getresolution", "getmouse",
"setmouse", "getkeyboard", "setkeyboard", "gettouch", "settouch",
"getgamepad", "setgamepad", "getjoystick", "setjoystick",
"getaccelerometer", "setaccelerometer", "getgyroscope", "setgyroscope",
"getcompass", "setcompass", "getlocation", "setlocation",
"getmicrophone", "setmicrophone", "getspeaker", "setspeaker",
"getcamera", "setcamera", "getscreen", "setscreen", "getwindow",
"setwindow", "getprocess", "setprocess", "getmemory", "setmemory",
"getcpu", "setcpu", "getgpu", "setgpu", "getos", "setos",
"gettime", "settime", "getdate", "setdate", "getzone", "setzone",
"getlanguage", "setlanguage", "getlocale", "setlocale",
"getcountry", "setcountry", "getregion", "setregion", "getip",
"setip", "getmac", "setmac", "gethwid", "sethwid", "getuuid",
"setuuid", "getid", "setid", "getname", "setname", "getavatar",
"setavatar", "getoutfit", "setoutfit", "getappearance", "setappearance",
"getrank", "setrank", "getrole", "setrole", "getgroup", "setgroup",
"getfriends", "setfriends", "getfollowers", "setfollowers",
"getfollowing", "setfollowing", "getinventory", "setinventory",
"getcurrency", "setcurrency", "getitems", "setitems", "getbadges",
"setbadges", "getpasses", "setpasses", "getassets", "setassets",
"getgames", "setgames", "getplaces", "setplaces", "getservers",
"setservers", "getplayers", "setplayers", "getcharacters",
"setcharacters", "gethumanoids", "sethumanoids", "getvehicles",
"setvehicles", "getparts", "setparts", "getmeshes", "setmeshes",
"getdecal", "setdecals", "gettextures", "settextures", "getlights",
"setlights", "getcameras", "setcameras", "getscreens", "setscreens",
"getgui", "setgui", "getfonts", "setfonts", "getsounds", "setsounds",
"getanimations", "setanimations", "gettools", "settools",
"getweapons", "setweapons", "getexplosives", "setexplosives",
"getfires", "setfires", "getsmokes", "setsmokes", "getsparkles",
"setsparkles", "getparticles", "setparticles", "getforces",
"setforces", "getjoints", "setjoints", "getmotors", "setmotors",
"getgears", "setgears", "getsprings", "setsprings", "getropes",
"setropes", "getwelds", "setwelds", "getsnaps", "setsnaps",
"gethinges", "sethinges", "getballsockets", "setballsockets",
"getrodconstraints", "setrodconstraints", "getbodypositions",
"setbodypositions", "getbodyvelocities", "setbodyvelocities",
"getbodygyros", "setbodygyros", "getbodyforces", "setbodyforces",
"getbodythrusts", "setbodythrusts", "getbodyangularvelocities",
"setbodyangularvelocities", "getbodyrotationalvelocities",
"setbodyrotationalvelocities", "getbodytranslationalvelocities",
"setbodytranslationalvelocities", "getbodymovers", "setbodymovers",
"getbodycontrollers", "setbodycontrollers", "getbodyanimators",
"setbodyanimators", "getbodyemitters", "setbodyemitters",
"getbodyattractors", "setbodyattractors", "getbodyrepulsors",
"setbodyrepulsors", "getbodygenerators", "setbodygenerators",
"getbodydestroyers", "setbodydestroyers", "getbodycreators",
"setbodycreators", "getbodymodifiers", "setbodymodifiers",
"getbodytransformers", "setbodytransformers", "getbodydeformers",
"setbodydeformers", "getbodywarpers", "setbodywarpers",
"getbodywelders", "setbodywelders", "getbodycutters", "setbodycutters",
"getbodypasters", "setbodypasters", "getbodycopiers", "setbodycopiers",
"getbodycloners", "setbodycloners", "getbodyteleporters",
"setbodyteleporters", "getbodyportals", "setbodyportals",
"getbodywarpgates", "setbodywarpgates", "getbodystargates",
"setbodystargates", "getbodywormholes", "setbodywormholes",
"getbodyblackholes", "setbodyblackholes", "getbodywhiteholes",
"setbodywhiteholes", "getbodytimemachines", "setbodytimemachines",
"getbodyrealityshifts", "setbodyrealityshifts", "getbodyuniverses",
"setbodyuniverses", "getbodydimensions", "setbodydimensions",
"getbodyplanes", "setbodyplanes", "getbodyrealms", "setbodyrealms",
"getbodyworlds", "setbodyworlds", "getbodyenvironments",
"setbodyenvironments", "getbodyecosystems", "setbodyecosystems",
"getbodybiomes", "setbodybiomes", "getbodyterrains", "setbodyterrains",
"getbodylandscapes", "setbodylandscapes", "getbodyseascapes",
"setbodyseascapes", "getbodyskyscapes", "setbodyskyscapes",
"getbodyatmospheres", "setbodyatmospheres", "getbodyweathers",
"setbodyweathers", "getbodyclimates", "setbodyclimates",
"getbodyseasons", "setbodyseasons", "getbodytimes", "setbodytimes",
"getbodydays", "setbodydays", "getbodynights", "setbodynights",
"getbodymornings", "setbodymornings", "getbodyevenings",
"setbodyevenings", "getbodyafternoons", "setbodyafternoons",
"getbodymidnights", "setbodymidnights", "getbodynoons", "setbodynoons",
"getbodyepochs", "setbodyepochs", "getbodyeras", "setbodyeras",
"getbodyperiods", "setbodyperiods", "getbodyages", "setbodyages",
"getbodyeons", "setbodyeons", "getbodykalpas", "setbodykalpas",
"getbodyaeons", "setbodyaeons", "getbodyeternities", "setbodyeternities",
"getbodyinfinitites", "setbodyinfinitites", "getbodyimmortalities",
"setbodyimmortalities", "getbodydivinities", "setbodydivinities",
"getbodydeities", "setbodydeities", "getbodygods", "setbodygods",
"getbodygoddesses", "setbodygoddesses", "getbodytitans", "setbodytitans",
"getbodycelestials", "setbodycelestials", "getbodycosmics",
"setbodycosmics", "getbodyuniversals", "setbodyuniversals",
"getbodygalactics", "setbodygalactics", "getbodyintergalactics",
"setbodyintergalactics", "getbodyextragalactics", "setbodyextragalactics",
"getbodymetagalactics", "setbodymetagalactics", "getbodyomniversals",
"setbodyomniversals", "getbodypanuniversals", "setbodypanuniversals",
"getbodytransuniversals", "setbodytransuniversals", "getbodymultiversals",
"setbodymultiversals", "getbodyhyperversals", "setbodyhyperversals",
"getbodyultaversals", "setbodyultaversals", "getbodyinfinitversals",
"setbodyinfinitversals", "getbodybeyondversals", "setbodybeyondversals",
"getbodyouterversals", "setbodyouterversals", "getbodyinnerversals",
"setbodyinnerversals", "getbodytranscendentals", "setbodytranscendentals",
"getbodyimmanentals", "setbodyimmanentals", "getbodyabsoluteals",
"setbodyabsoluteals", "getbodyultimateals", "setbodyultimateals",
"getbodyfinalals", "setbodyfinalals", "getbodylastals", "setbodylastals",
"getbodyendals", "setbodyendals", "getbodybeginningals",
"setbodybeginningals", "getbodymiddleals", "setbodymiddleals",
"getbodyeternalals", "setbodyeternalals", "getbodyinfiniteals",
"setbodyinfiniteals", "getbodyfiniteals", "setbodyfiniteals",
"getbodytimelessals", "setbodytimelessals", "getbodytemporalals",
"setbodytemporalals", "getbodyspatialals", "setbodyspatialals",