-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathPrisonLifeScorpionAdmin5$.lua
More file actions
3181 lines (2915 loc) · 105 KB
/
Copy pathPrisonLifeScorpionAdmin5$.lua
File metadata and controls
3181 lines (2915 loc) · 105 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
local UserId = tonumber((game:GetService("Players").LocalPlayer.CharacterAppearance):split('=')[#((game:GetService("Players").LocalPlayer.CharacterAppearance):split('='))])
local UserName = game:GetService('HttpService'):JSONDecode(game:HttpGet('http://api.roblox.com/users/'..UserId)).Username
if UNLOAD_ADMIN then
UNLOAD_ADMIN()
end
local version = "v1.41"
local prefix = "."
local SCRIPT_UNLOADED = false
ANTI_CRASH_DISABLED = true
if ANTI_CRASH_DISABLED then
warn('Synapse is BUTTCRACK rn, wait until they fix their api for anti-crash to work :(')
end
ownsSwat = game:GetService("MarketplaceService"):UserOwnsGamePassAsync(UserId, 96651)
glass = {
workspace["Prison_Halls"].glass:GetChildren()[1],
workspace["Prison_Halls"].glass:GetChildren()[2],
workspace["Prison_Halls"].glass:GetChildren()[3],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[1],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[2],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[3],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[4],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[5],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[6],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[7],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[8],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[9],
workspace["Prison_Guard_Outpost"].doorwindow:GetChildren()[10],
workspace["Prison_Guard_Outpost"].window:GetChildren()[1],
workspace["Prison_Guard_Outpost"].window:GetChildren()[2],
workspace["Prison_Guard_Outpost"].window:GetChildren()[3],
workspace["Prison_Guard_Outpost"].window:GetChildren()[4],
workspace["Prison_Guard_Outpost"].window:GetChildren()[5],
workspace["Prison_Guard_Outpost"].window:GetChildren()[6],
workspace["Prison_Guard_Outpost"].window:GetChildren()[7],
workspace["Prison_Guard_Outpost"].window:GetChildren()[8],
workspace["Prison_Cafeteria"].Model.Model:GetChildren()[1],
workspace["Prison_Cafeteria"].Model.Model:GetChildren()[2],
workspace["Prison_Cafeteria"].Model.Model:GetChildren()[3],
workspace["Prison_Cafeteria"].Model.Model:GetChildren()[4],
workspace["Prison_Cafeteria"].Model.Model:GetChildren()[5],
}
glassParts = {}
for _,v in pairs(glass) do
table.insert(glassParts,{v,v.Parent})
end
wallParts = {}
for i,v in pairs(game:GetService("Workspace")["Prison_Halls"]:GetChildren()) do
if v.Name ~= ("floor") then
if v.Name ~= ("lights") then
table.insert(wallParts,{v,v.Parent})
end
end
end
for i,v in pairs(game:GetService("Workspace")["Prison_Guard_Outpost"]:GetChildren()) do
if v.Name ~= ("floor") then
if v.Name ~= ("lights") then
table.insert(wallParts,{v,v.Parent})
end
end
end
for i,v in pairs(game:GetService("Workspace")["Prison_Cafeteria"]:GetChildren()) do
if v.Name ~= ("floor") then
if v.Name ~= ("lights") then
table.insert(wallParts,{v,v.Parent})
end
end
end
for i,v in pairs(game:GetService("Workspace")["Prison_Fences"]:GetChildren()) do
table.insert(wallParts,{v,v.Parent})
end
for i,v in pairs(game:GetService("Workspace")["Prison_OuterWall"]:GetChildren()) do
table.insert(wallParts,{v,v.Parent})
end
for i,v in pairs(game:GetService("Workspace")["Doors"]:GetChildren()) do
table.insert(wallParts,{v,v.Parent})
end
for i,v in pairs(game:GetService("Workspace")["Prison_Administration"]:GetChildren()) do
if v.Name ~= ("light_floor1") then
if v.Name ~= ("light_floor2") then
table.insert(wallParts,{v,v.Parent})
end
end
end
for i,v in pairs(game:GetService("Workspace")["Prison_Cellblock"]:GetChildren()) do
if v.Name ~= ("c_floor") then
if v.Name ~= ("a_lights") then
if v.Name ~= ("b_lights") then
if v.Name ~= ("c_lights") then
table.insert(wallParts,{v,v.Parent})
end
end
end
end
end
grass = Instance.new("Part")
grass.Anchored = true
grass.Name = "tempGrass"
grass.Parent = game:GetService("Lighting")
grass.Size = Vector3.new(402, 1.463, 475)
grass.Position = Vector3.new(929.5, 94.2336, 2273.6)
grass.Material = Enum.Material.Grass
grass.Color = Color3.fromRGB(75, 151, 75)
grass.Orientation = Vector3.new(0, 0, 0)
if game.Players.LocalPlayer.PlayerGui.TestGui:FindFirstChild("TextButton") then
game.Players.LocalPlayer.PlayerGui.TestGui.TextButton:Destroy()
end
local Watermark = Instance.new("ScreenGui")
local Holder = Instance.new("Frame")
local RETARDEDLABELS = Instance.new("TextLabel")
local RETARDEDLABELS_2 = Instance.new("TextLabel")
local VersionLabel = Instance.new("TextLabel")
Watermark.Name = "Watermark"
Watermark.Parent = game.CoreGui
Watermark.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Holder.Name = "Holder"
Holder.Parent = Watermark
Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Holder.BackgroundTransparency = 1.000
Holder.Position = UDim2.new(0, 0, 1, -37)
Holder.Size = UDim2.new(0, 211, 0, 32)
RETARDEDLABELS.Name = "RETARDEDLABELS"
RETARDEDLABELS.Parent = Holder
RETARDEDLABELS.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RETARDEDLABELS.BackgroundTransparency = 1.000
RETARDEDLABELS.Position = UDim2.new(0.037914671, 0, 0.183227539, 0)
RETARDEDLABELS.Size = UDim2.new(0.545604885, 0, 0.625000536, 0)
RETARDEDLABELS.Font = Enum.Font.SourceSansBold
RETARDEDLABELS.Text = "SCORPION"
RETARDEDLABELS.TextColor3 = Color3.fromRGB(0, 0, 0)
RETARDEDLABELS.TextSize = 28.000
RETARDEDLABELS_2.Name = "RETARDEDLABELS"
RETARDEDLABELS_2.Parent = Holder
RETARDEDLABELS_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RETARDEDLABELS_2.BackgroundTransparency = 1.000
RETARDEDLABELS_2.Position = UDim2.new(0.578780293, 0, 0.183227539, 0)
RETARDEDLABELS_2.Size = UDim2.new(0.345114082, 0, 0.625, 0)
RETARDEDLABELS_2.Font = Enum.Font.SourceSansBold
RETARDEDLABELS_2.Text = "ADMIN"
RETARDEDLABELS_2.TextColor3 = Color3.fromRGB(255, 255, 255)
RETARDEDLABELS_2.TextSize = 28.000
VersionLabel.Name = "VersionLabel"
VersionLabel.Parent = Holder
VersionLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
VersionLabel.BackgroundTransparency = 1.000
VersionLabel.Position = UDim2.new(0.923894346, 0, 0.276977539, 0)
VersionLabel.Size = UDim2.new(0.241706163, 0, 0.4375, 0)
VersionLabel.Font = Enum.Font.SourceSans
VersionLabel.Text = version
VersionLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
VersionLabel.TextSize = 14.000
VersionLabel.TextXAlignment = Enum.TextXAlignment.Left
local ScorpionAdmin = Instance.new("ScreenGui")
local Commands = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local Close = Instance.new("TextButton")
local Commands_2 = Instance.new("Frame")
local Padding = Instance.new("ScrollingFrame")
local TextLabel = Instance.new("TextLabel")
local Logo = Instance.new("ImageButton")
local Credits = Instance.new("Frame")
local Title_2 = Instance.new("TextLabel")
local Close_2 = Instance.new("TextButton")
local Credits_2 = Instance.new("Frame")
local TextLabel_2 = Instance.new("TextLabel")
local Logo_2 = Instance.new("ImageButton")
local Loader = Instance.new("Frame")
local Title_3 = Instance.new("TextLabel")
local Close_3 = Instance.new("TextButton")
local ON = Instance.new("Frame")
local OFF = Instance.new("Frame")
local LoadingMessage = Instance.new("TextLabel")
local Logo_3 = Instance.new("ImageButton")
local Main = Instance.new("Frame")
local Bar = Instance.new("Frame")
local Input = Instance.new("TextBox")
local ShowOutput = Instance.new("TextButton")
local ShowCommands = Instance.new("TextButton")
local Title_4 = Instance.new("TextLabel")
local Logo_4 = Instance.new("ImageButton")
local Output = Instance.new("Frame")
local Title_5 = Instance.new("TextLabel")
local Close_4 = Instance.new("TextButton")
local Output_2 = Instance.new("Frame")
local Padding_2 = Instance.new("Frame")
local TextLabel_3 = Instance.new("TextLabel")
local Logo_5 = Instance.new("ImageButton")
local Hover1 = Instance.new("Frame")
local TextLabel_4 = Instance.new("TextLabel")
local Hover2 = Instance.new("Frame")
local TextLabel_5 = Instance.new("TextLabel")
local Hover3 = Instance.new("Frame")
local TextLabel_6 = Instance.new("TextLabel")
local Hover4 = Instance.new("Frame")
local TextLabel_7 = Instance.new("TextLabel")
ScorpionAdmin.Name = "Scorpion Admin"
ScorpionAdmin.Parent = game.CoreGui
ScorpionAdmin.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Loader.Name = "Loader"
Loader.Parent = ScorpionAdmin
Loader.AnchorPoint = Vector2.new(0.5, 0.5)
Loader.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Loader.BorderSizePixel = 0
Loader.Position = UDim2.new(0.5, 0, 0.5, 0)
Loader.Size = UDim2.new(0, 263, 0, 102)
Title_3.Name = "Title"
Title_3.Parent = Loader
Title_3.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Title_3.BackgroundTransparency = 1.000
Title_3.BorderSizePixel = 0
Title_3.Position = UDim2.new(0.125991181, 0, 0, 5)
Title_3.Size = UDim2.new(0, 194, 0, 22)
Title_3.Font = Enum.Font.Code
Title_3.Text = "Scorpion Admin-Loader "..version
Title_3.TextColor3 = Color3.fromRGB(255, 255, 255)
Title_3.TextSize = 12.000
Close_3.Name = "Close"
Close_3.Parent = Loader
Close_3.Active = false
Close_3.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
Close_3.BorderSizePixel = 0
Close_3.Position = UDim2.new(0.892115176, 0, 0, 5)
Close_3.Selectable = false
Close_3.Size = UDim2.new(0, 22, 0, 22)
Close_3.Font = Enum.Font.Code
Close_3.Text = "_"
Close_3.TextColor3 = Color3.fromRGB(255, 255, 255)
Close_3.TextSize = 14.000
ON.Name = "ON"
ON.Parent = Loader
ON.AnchorPoint = Vector2.new(0.5, 0.5)
ON.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
ON.BorderSizePixel = 0
ON.Position = UDim2.new(0.489852607, 0, 0.470588237, 10)
ON.Size = UDim2.new(0, 248, 0, 20)
OFF.Name = "OFF"
OFF.Parent = ON
OFF.AnchorPoint = Vector2.new(1, 0)
OFF.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
OFF.BorderSizePixel = 0
OFF.Position = UDim2.new(1, 0, 0, 0)
OFF.Size = UDim2.new(0, 248, 0, 20)
LoadingMessage.Name = "LoadingMessage"
LoadingMessage.Parent = Loader
LoadingMessage.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
LoadingMessage.BorderSizePixel = 0
LoadingMessage.Position = UDim2.new(0.0171102658, 0, 0.754901946, 0)
LoadingMessage.Size = UDim2.new(0, 249, 0, 18)
LoadingMessage.Font = Enum.Font.SourceSans
LoadingMessage.Text = "Checking Whitelist..."
LoadingMessage.TextColor3 = Color3.fromRGB(255, 255, 255)
LoadingMessage.TextSize = 14.000
Logo_3.Name = "Logo"
Logo_3.Parent = Loader
Logo_3.Active = false
Logo_3.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Logo_3.BorderSizePixel = 0
Logo_3.Position = UDim2.new(0.0195272341, 0, 0, 5)
Logo_3.Selectable = false
Logo_3.Size = UDim2.new(0, 22, 0, 22)
Logo_3.Image = "http://www.roblox.com/asset/?id=5838736530"
Logo_3.ScaleType = Enum.ScaleType.Fit
wait(0.3)
LoadingMessage.Text = "Checking Updates..."
OFF.Size = UDim2.new(0, 208, 0, 20)
wait(0.3)
LoadingMessage.Text = "Checking Validation..."
OFF.Size = UDim2.new(0, 188, 0, 20)
wait(0.3)
LoadingMessage.Text = "Loading UI..."
OFF.Size = UDim2.new(0, 160, 0, 20)
wait(0.3)
LoadingMessage.Text = "Finalizing..."
OFF.Size = UDim2.new(0, 80, 0, 20)
wait(0.3)
OFF.Size = UDim2.new(0, 0, 0, 20)
OFF.Visible = false
Loader.Visible = false
Commands.Name = "Commands"
Commands.Parent = ScorpionAdmin
Commands.AnchorPoint = Vector2.new(0,1)
Commands.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Commands.BorderSizePixel = 0
Commands.Position = UDim2.new(0.5, 0, 0.5, 0)
Commands.Size = UDim2.new(0, 263, 0, 198)
Commands.Visible = false
Title.Name = "Title"
Title.Parent = Commands
Title.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Title.BorderSizePixel = 0
Title.Position = UDim2.new(0.125991181, 0, 0, 5)
Title.Size = UDim2.new(0, 194, 0, 22)
Title.Font = Enum.Font.Code
Title.Text = "Scorpion Admin-Commands"
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 12.000
Close.Name = "Close"
Title.BackgroundTransparency = 1.000
Close.Parent = Commands
Close.Active = false
Close.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
Close.BorderSizePixel = 0
Close.Position = UDim2.new(0.892115176, 0, 0, 5)
Close.Selectable = false
Close.Size = UDim2.new(0, 22, 0, 22)
Close.Font = Enum.Font.Code
Close.Text = "X"
Close.TextColor3 = Color3.fromRGB(255, 255, 255)
Close.TextSize = 14.000
Commands_2.Name = "Commands"
Commands_2.Parent = Commands
Commands_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Commands_2.BorderSizePixel = 0
Commands_2.Position = UDim2.new(0.0114068445, 0, 0.161616161, 0)
Commands_2.Size = UDim2.new(0, 256, 0, 161)
Padding.Name = "Padding"
Padding.Parent = Commands_2
Padding.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Padding.BorderSizePixel = 0
Padding.Position = UDim2.new(0.0166666508, 0, 0.0421051607, 0)
Padding.Selectable = false
Padding.Size = UDim2.new(0, 249, 0, 148)
Padding.ScrollBarThickness = 7
TextLabel.Parent = nil
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Font = Enum.Font.Code
TextLabel.Text = ""
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextSize = 14.000
TextLabel.Size = UDim2.new(1, 0, 0, TextLabel.TextSize)
TextLabel.TextWrapped = true
TextLabel.TextXAlignment = Enum.TextXAlignment.Left
TextLabel.TextYAlignment = Enum.TextYAlignment.Top
local UIListLayout = Instance.new("UIListLayout")
UIListLayout.Parent = Padding
UIListLayout.SortOrder = Enum.SortOrder.Name
Logo.Name = "Logo"
Logo.Parent = Commands
Logo.Active = false
Logo.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Logo.BorderSizePixel = 0
Logo.Position = UDim2.new(0.0195272341, 0, 0, 5)
Logo.Selectable = false
Logo.Size = UDim2.new(0, 22, 0, 22)
Logo.Image = "http://www.roblox.com/asset/?id=5838736530"
Logo.ScaleType = Enum.ScaleType.Fit
Credits.Name = "Credits"
Credits.Parent = ScorpionAdmin
Credits.AnchorPoint = Vector2.new(0.5, 0.5)
Credits.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Credits.BorderSizePixel = 0
Credits.Position = UDim2.new(0.5, 0, 0.5, 0)
Credits.Size = UDim2.new(0, 190, 0, 102)
Credits.Visible = false
Title_2.Name = "Title"
Title_2.Parent = Credits
Title_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Title_2.BackgroundTransparency = 1.000
Title_2.BorderSizePixel = 0
Title_2.Position = UDim2.new(0.151106179, 0, 0, 5)
Title_2.Size = UDim2.new(0, 127, 0, 22)
Title_2.Font = Enum.Font.Code
Title_2.Text = "Scorpion Admin-Credit"
Title_2.TextColor3 = Color3.fromRGB(255, 255, 255)
Title_2.TextSize = 12.000
Close_2.Name = "Close"
Close_2.Parent = Credits
Close_2.Active = false
Close_2.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
Close_2.BorderSizePixel = 0
Close_2.Position = UDim2.new(0.857894659, 0, 0, 5)
Close_2.Selectable = false
Close_2.Size = UDim2.new(0, 22, 0, 22)
Close_2.Font = Enum.Font.Code
Close_2.Text = "X"
Close_2.TextColor3 = Color3.fromRGB(255, 255, 255)
Close_2.TextSize = 14.000
Credits_2.Name = "Credits"
Credits_2.Parent = Credits
Credits_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Credits_2.BorderSizePixel = 0
Credits_2.Position = UDim2.new(0.0247903932, 0, 0.330659747, 0)
Credits_2.Size = UDim2.new(0, 180, 0, 62)
TextLabel_2.Parent = Credits_2
TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_2.BackgroundTransparency = 1.000
TextLabel_2.Position = UDim2.new(0.027777778, 0, 0.0967741907, 0)
TextLabel_2.Size = UDim2.new(0.949999988, 0, 0.806451619, 0)
TextLabel_2.Font = Enum.Font.Code
TextLabel_2.Text = "Made By Vapin' Cat#7950\nMotivated By .phantom#2458\nDiscord Server:\nhttps://discord.gg/4vZhZs8"
TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_2.TextSize = 12.000
TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
TextLabel_2.TextYAlignment = Enum.TextYAlignment.Top
Logo_2.Name = "Logo"
Logo_2.Parent = Credits
Logo_2.Active = false
Logo_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Logo_2.BorderSizePixel = 0
Logo_2.Position = UDim2.new(0.0195272341, 0, 0, 5)
Logo_2.Selectable = false
Logo_2.Size = UDim2.new(0, 22, 0, 22)
Logo_2.Image = "http://www.roblox.com/asset/?id=5838736530"
Logo_2.ScaleType = Enum.ScaleType.Fit
Main.Name = "Main"
Main.Parent = ScorpionAdmin
Main.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Main.BorderSizePixel = 0
Main.Position = UDim2.new(0, 5, 1, -100)
Main.Size = UDim2.new(0, 190, 0, 59)
Main.Visible = true
Bar.Name = "Bar"
Bar.Parent = Main
Bar.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Bar.BorderSizePixel = 0
Bar.Position = UDim2.new(0.0195272341, 0, 0.545114696, 0)
Bar.Size = UDim2.new(0, 182, 0, 22)
Input.Name = "Input"
Input.Parent = Bar
Input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Input.BackgroundTransparency = 1.000
Input.Position = UDim2.new(0.0164835174, 0, 0.0909090936, 0)
Input.Size = UDim2.new(0, 175, 0, 17)
Input.Font = Enum.Font.SourceSans
Input.PlaceholderText = "Press . to focus command bar."
Input.Text = ""
Input.TextColor3 = Color3.fromRGB(255, 255, 255)
Input.TextSize = 14.000
Input.TextXAlignment = Enum.TextXAlignment.Left
ShowOutput.Name = "ShowOutput"
ShowOutput.Parent = Main
ShowOutput.Active = false
ShowOutput.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
ShowOutput.BorderSizePixel = 0
ShowOutput.Position = UDim2.new(0.705263197, 0, 0.0782889426, 0)
ShowOutput.Selectable = false
ShowOutput.Size = UDim2.new(0, 22, 0, 22)
ShowOutput.Font = Enum.Font.Code
ShowOutput.Text = ">_"
ShowOutput.TextColor3 = Color3.fromRGB(255, 255, 255)
ShowOutput.TextSize = 14.000
ShowCommands.Name = "ShowCommands"
ShowCommands.Parent = Main
ShowCommands.Active = false
ShowCommands.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
ShowCommands.BorderSizePixel = 0
ShowCommands.Position = UDim2.new(0.857894659, 0, 0.0782889426, 0)
ShowCommands.Selectable = false
ShowCommands.Size = UDim2.new(0, 22, 0, 22)
ShowCommands.Font = Enum.Font.Code
ShowCommands.Text = "?"
ShowCommands.TextColor3 = Color3.fromRGB(255, 255, 255)
ShowCommands.TextSize = 14.000
Title_4.Name = "Title"
Title_4.Parent = Main
Title_4.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Title_4.BackgroundTransparency = 1.000
Title_4.BorderSizePixel = 0
Title_4.Position = UDim2.new(0.151106179, 0, 0.0874871686, 0)
Title_4.Size = UDim2.new(0, 99, 0, 22)
Title_4.Font = Enum.Font.Code
Title_4.Text = "Scorpion Admin"
Title_4.TextColor3 = Color3.fromRGB(255, 255, 255)
Title_4.TextSize = 12.000
Logo_4.Name = "Logo"
Logo_4.Parent = Main
Logo_4.Active = false
Logo_4.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Logo_4.BorderSizePixel = 0
Logo_4.Position = UDim2.new(0.0195272341, 0, 0.0874871686, 0)
Logo_4.Selectable = false
Logo_4.Size = UDim2.new(0, 22, 0, 22)
Logo_4.Image = "http://www.roblox.com/asset/?id=5838736530"
Logo_4.ScaleType = Enum.ScaleType.Fit
Output.Name = "Output"
Output.Parent = ScorpionAdmin
Output.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Output.BorderSizePixel = 0
Output.Position = UDim2.new(0.5, 0, 0.5, 0)
Output.Size = UDim2.new(0, 190, 0, 132)
Output.Visible = false
Title_5.Name = "Title"
Title_5.Parent = Output
Title_5.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Title_5.BackgroundTransparency = 1.000
Title_5.BorderSizePixel = 0
Title_5.Position = UDim2.new(0.151106179, 0, 0, 5)
Title_5.Size = UDim2.new(0, 127, 0, 22)
Title_5.Font = Enum.Font.Code
Title_5.Text = "Scorpion Admin-Output"
Title_5.TextColor3 = Color3.fromRGB(255, 255, 255)
Title_5.TextSize = 12.000
Close_4.Name = "Close"
Close_4.Parent = Output
Close_4.Active = false
Close_4.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
Close_4.BorderSizePixel = 0
Close_4.Position = UDim2.new(0.857894659, 0, 0, 5)
Close_4.Selectable = false
Close_4.Size = UDim2.new(0, 22, 0, 22)
Close_4.Font = Enum.Font.Code
Close_4.Text = "X"
Close_4.TextColor3 = Color3.fromRGB(255, 255, 255)
Close_4.TextSize = 14.000
Output_2.Name = "Output"
Output_2.Parent = Output
Output_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Output_2.BorderSizePixel = 0
Output_2.Position = UDim2.new(0.0195272341, 0, 0.24242425, 0)
Output_2.Size = UDim2.new(0, 180, 0, 95)
Padding_2.Name = "Padding"
Padding_2.Parent = Output_2
Padding_2.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Padding_2.BorderSizePixel = 0
Padding_2.ClipsDescendants = true
Padding_2.Position = UDim2.new(0.0166666675, 0, 0.042105265, 0)
Padding_2.Size = UDim2.new(0, 174, 0, 87)
TextLabel_3.Parent = Padding_2
TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_3.BackgroundTransparency = 1.000
TextLabel_3.Size = UDim2.new(1, 0, 1, 0)
TextLabel_3.Font = Enum.Font.Code
TextLabel_3.Text = "\n\n\n\n\n\n\n"
TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_3.TextSize = 14.000
TextLabel_3.TextXAlignment = Enum.TextXAlignment.Left
TextLabel_3.TextYAlignment = Enum.TextYAlignment.Bottom
Logo_5.Name = "Logo"
Logo_5.Parent = Output
Logo_5.Active = false
Logo_5.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
Logo_5.BorderSizePixel = 0
Logo_5.Position = UDim2.new(0.0195272341, 0, 0, 5)
Logo_5.Selectable = false
Logo_5.Size = UDim2.new(0, 22, 0, 22)
Logo_5.Image = "http://www.roblox.com/asset/?id=5838736530"
Logo_5.ScaleType = Enum.ScaleType.Fit
Hover1.Name = "Hover1"
Hover1.Parent = ScorpionAdmin
Hover1.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Hover1.BorderColor3 = Color3.fromRGB(60, 60, 60)
Hover1.Position = UDim2.new(0.0090009002, 0, 0.490291268, 0)
Hover1.Size = UDim2.new(0, 156, 0, 16)
Hover1.Visible = false
TextLabel_4.Parent = Hover1
TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_4.BackgroundTransparency = 1.000
TextLabel_4.Position = UDim2.new(0, 4, 0, 0)
TextLabel_4.Size = UDim2.new(1, -4, 1, 0)
TextLabel_4.Font = Enum.Font.Code
TextLabel_4.Text = "Opens Commands Window"
TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_4.TextSize = 14.000
TextLabel_4.TextXAlignment = Enum.TextXAlignment.Left
Hover2.Name = "Hover2"
Hover2.Parent = ScorpionAdmin
Hover2.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Hover2.BorderColor3 = Color3.fromRGB(60, 60, 60)
Hover2.Position = UDim2.new(0.0090009002, 0, 0.519417465, 0)
Hover2.Size = UDim2.new(0, 91, 0, 16)
Hover2.Visible = false
TextLabel_5.Parent = Hover2
TextLabel_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_5.BackgroundTransparency = 1.000
TextLabel_5.Position = UDim2.new(0, 4, 0, 0)
TextLabel_5.Size = UDim2.new(1, -4, 1, 0)
TextLabel_5.Font = Enum.Font.Code
TextLabel_5.Text = "Opens Output"
TextLabel_5.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_5.TextSize = 14.000
TextLabel_5.TextXAlignment = Enum.TextXAlignment.Left
Hover3.Name = "Hover3"
Hover3.Parent = ScorpionAdmin
Hover3.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Hover3.BorderColor3 = Color3.fromRGB(60, 60, 60)
Hover3.Position = UDim2.new(0.0090009002, 0, 0.548543692, 0)
Hover3.Size = UDim2.new(0, 91, 0, 16)
Hover3.Visible = false
TextLabel_6.Parent = Hover3
TextLabel_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_6.BackgroundTransparency = 1.000
TextLabel_6.Position = UDim2.new(0, 4, 0, 0)
TextLabel_6.Size = UDim2.new(1, -4, 1, 0)
TextLabel_6.Font = Enum.Font.Code
TextLabel_6.Text = "Close Window"
TextLabel_6.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_6.TextSize = 14.000
TextLabel_6.TextXAlignment = Enum.TextXAlignment.Left
Hover4.Name = "Hover4"
Hover4.Parent = ScorpionAdmin
Hover4.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
Hover4.BorderColor3 = Color3.fromRGB(60, 60, 60)
Hover4.Position = UDim2.new(0.00988959521, 0, 0.576456308, 0)
Hover4.Size = UDim2.new(0, 113, 0, 16)
Hover4.Visible = false
TextLabel_7.Parent = Hover4
TextLabel_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_7.BackgroundTransparency = 1.000
TextLabel_7.Position = UDim2.new(0, 4, 0, 0)
TextLabel_7.Size = UDim2.new(1, -4, 1, 0)
TextLabel_7.Font = Enum.Font.Code
TextLabel_7.Text = "Minimize Window"
TextLabel_7.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel_7.TextSize = 14.000
TextLabel_7.TextXAlignment = Enum.TextXAlignment.Left
function IsEven(num)
return num % 2 == 0
end
local UserInputService = game:GetService("UserInputService")
function draggable(gui)
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
draggable(Main)
draggable(Output)
draggable(Commands)
draggable(Credits)
function openCredits()
Credits.Visible = true
end
Logo.MouseButton1Down:Connect(openCredits)
Logo_2.MouseButton1Down:Connect(openCredits)
Logo_3.MouseButton1Down:Connect(openCredits)
Logo_4.MouseButton1Down:Connect(openCredits)
Logo_5.MouseButton1Down:Connect(openCredits)
ShowCommands.MouseButton1Down:Connect(function()
Commands.Visible = true
Commands.Position = Main.Position + UDim2.new(0,Main.Size.X.Offset+5,0,Main.Size.Y.Offset)
end)
ShowOutput.MouseButton1Down:Connect(function()
Output.Visible = true
Output.Position = Main.Position + UDim2.new(0,0,0,-135)
end)
Close_4.MouseButton1Down:Connect(function()
Output.Visible = false
end)
Close.MouseButton1Down:Connect(function()
Commands.Visible = false
end)
Close_2.MouseButton1Down:Connect(function()
Credits.Visible = false
end)
allcmds = {
"--- Player ---",
"re / respawn - respawns",
"to [plr] - Teleports to player.",
"sheild - Gives shield.",
"armor - Gives armor.",
"kit - Gives kit.",
"rj - Rejoins the game.",
"cmds - Shows commands",
"serverhop - Hops to another server.",
"sa / spam arrest [plr, off] - spam arrests the player.",
"bullets [count] - sets guns bullets.",
"remove/ removehomescreen - removes black film.",
"",
"--- Server ---",
"kill [plr, _i, _g, _c, _n, _s] - Kills player.",
"arrest [plr] - Arrests player.",
"admin [plr] - Admins player.",
"unadmin [plr] - Unadmins player.",
"clearadmin - Clears all admins.",
"loopkill / lk [plr, _i, _g, _c, _n, _s] - Loopkills player.",
"unloopkill / unlk [plr] - Unloopkills player.",
"clearloopkill / clk - Clears all loopkills.",
"spike / lagspike [time] - lags server for the specified amount of seconds.",
"toilet [plr] - Toilets player.",
"snack [plr] - Snacks player.",
"trash [plr] - Trashes player.",
"crash - crashes server - thx Globals#9393",
"endserver - disconnects everyone in the server (SWAT) - thx High#9991",
"trap [plr] - Traps player.",
"",
"--- Toggles ---",
"antifling - antifling [on] and [off] (BETA)",
"antishield - antishield [on] and [off]",
"antiinvis - detects skiddy skid skids [on] and [off]",
"localplayerhitbox / lph - toggles localplayer hitbox [on] and [off]",
"killaura / ka - toggles killaura [on] and [off]",
"anticrash - automatically on [on] and [off] to toggle.",
"curvebul - curved bullets aimbot [on] and [off]",
"antiafk - automatically on [on] and [off] to toggle.",
"autoia / autoinfammo - autoinfammo [on] and [off]",
"aguns / autoguns - autoguns [on] and [off]",
"alock / autolock - autolock [on] and [off]",
"auto / autorespawn - [on] and [off].",
"doors - [on] and [off]",
"windows - [on] and [off]",
"walls - [on] and [off]",
"fp / fastpunch - fastpunch [on] and [off]",
"gui - gui [on] and [off].",
"esp - esp [on] and [off].",
"espteams - team color matching for esp [on] and [off].",
"on / off - Turns all toggles [on] or [off].",
"",
"--- Other ---",
"view [plr] - views player.",
"unview - stops viewing player.",
"antilag / removetextures - PERMANENTLY removes textures.",
"brightness / bri [amount] - sets lighting brightness.",
"fly - turns on fly.",
"unfly - turns off fly.",
"flyspeed - changes fly speed.",
"noclip - turns on noclip.",
"clip - turns off noclip.",
"ws / walkspeed - sets walkspeed",
"jp / jumppower - sets jumppower",
"gv / gravity - sets gravity",
"hh / hipheight - sets hipheight",
"rws / resetwalkspeed - resets walkspeed",
"rjp / resetjumppower - resets jumppower",
"rgv / resetgravity - resets gravity",
"rhh / resethipheight - resets hipheight",
"quit - closes roblox.",
"brag - chats about this script.",
"getusers - gets scorpion admin users.",
"",
"--- Teleports --- thx FATE#1646",
"nex - teleports to nexus.",
"yar - teleports to yard.",
"arm - teleports to armory.",
"sew - teleports to sewers.",
"cbase - teleports to crim base.",
"garage - teleports to garage.",
"tower - teleports to yard tower.",
"bus - teleports to bus stop.",
"bridge - teleports to under the bridge.",
"store - teleports to the store.",
"gas - teleports to the gas station.",
"hell - teleports to hell.",
"cafe - teleports to prison cafe.",
"cell - teleports to prison cells.",
"roof - teleports to prison roof.",
"gate - teleports to prison gate.",
"crat - teleports to crates.",
"barn - teleports to barn.",
"house - teleports to houses.",
"spawn - teleports to spawn.",
"yum - teleports to food in cafe.",
"cage - teleports to cage.",
"flag - teleports to flag in yard.",
"back - teleports to back.",
"power - teleports to power lines.",
"office - teleports to office.",
"secret - teleports to secret ;)",
"safe - teleports to safe place.",
"empty - teleports to empty.",
"gtower - teleports to guard tower.",
"4walls - teleports to an area you cant escape.",
"bum - teleports to hitchhiking area",
"visitor - teleports to visitor area in prison.",
"dungeon - teleports to sex dungeon.",
"grass - teleports to grass.",
"vent - teleports to vent.",
"lot - teleports to parking lot.",
"candy - teleports to vending machine.",
"meeting - teleports to meeting room",
"unknown - teleports to U N K O W N . . .",
"mountain - teleports to mountain.",
}
longestText = 0
for i,v in pairs(allcmds) do
clone = TextLabel:Clone()
clone.Parent = Padding
clone.Text = TextLabel.Text..v
textSize = game:GetService("TextService"):GetTextSize(
TextLabel.Text..v,
TextLabel.TextSize,
TextLabel.Font,
TextLabel.AbsoluteSize
)
if textSize.X > longestText then
longestText = textSize.X
end
if IsEven(i) then
clone.TextColor3 = Color3.fromRGB(255,255,255)
else
clone.TextColor3 = Color3.fromRGB(125,125,125)
end
clone.LayoutOrder = i
end
Padding.CanvasSize = UDim2.new(0,longestText,0,TextLabel.TextSize * #allcmds)
game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
if prefix == "/" then
if key == ";" and ScorpionAdmin.Enabled then
Input:CaptureFocus()
end
else
if key == prefix and ScorpionAdmin.Enabled then
Input:CaptureFocus()
end
end
end)
function changeprefix(prefix_text)
prefix = prefix_text
Input.PlaceholderText = "Press "..prefix.." to focus command bar."
end
local admins = {}
local states = {}
local connections = {}
local loopkills = {}
states.noclip = false
flySpeed = 1
bodyGyro = Instance.new("BodyGyro", game:GetService("Players").LocalPlayer.Character.Torso)
bodyGyro.P = 0
bodyGyro.MaxTorque = Vector3.new(0,0,0)
bodyGyro.CFrame = game:GetService("Players").LocalPlayer.Character.Torso.CFrame
bodyVelocity = Instance.new("BodyVelocity", game:GetService("Players").LocalPlayer.Character.Torso)
bodyVelocity.MaxForce = Vector3.new(0,0,0)
bodyVelocity.Velocity = Vector3.new(0,0,0)
Controls = {"w","s","a","d","e","q"}
ControlInd = {1,-1,-1,1,-1,1}
ControlStatus = {w = 0,s = 0,a = 0,d = 0,e = 0,q = 0,}
function startFly()
pcall(function()
bodyGyro:Destroy()
bodyVelocity:Destroy()
bodyGyro = nil
bodyVelocity = nil
end) pcall(function()
bodyGyro = Instance.new("BodyGyro", game:GetService("Players").LocalPlayer.Character.Torso)
bodyGyro.P = 0
bodyGyro.MaxTorque = Vector3.new(0,0,0)
bodyGyro.CFrame = game:GetService("Players").LocalPlayer.Character.Torso.CFrame
bodyVelocity = Instance.new("BodyVelocity", game:GetService("Players").LocalPlayer.Character.Torso)
bodyVelocity.MaxForce = Vector3.new(0,0,0)
bodyVelocity.Velocity = Vector3.new(0,0,0)
flying = true
bodyGyro.P = 9e4
bodyGyro.MaxTorque = Vector3.new(9e4,9e4,9e4)
bodyGyro.CFrame = game:GetService("Players").LocalPlayer.Character.Torso.CFrame
bodyVelocity.MaxForce = Vector3.new(9e4,9e4,9e4)
bodyVelocity.Velocity = Vector3.new(0,0,0)
end)
end
function endFly()
pcall(function()
flying = false
bodyGyro.P = 0
bodyGyro.MaxTorque = Vector3.new(0,0,0)
bodyGyro.CFrame = game:GetService("Players").LocalPlayer.Character.Torso.CFrame
bodyVelocity.MaxForce = Vector3.new(0,0,0)
bodyVelocity.Velocity = Vector3.new(0,0,0)
game:GetService("Players").LocalPlayer.Character.Humanoid.PlatformStand = false
bodyGyro:Destroy()
bodyVelocity:Destroy()
bodyGyro = nil
bodyVelocity = nil
end)
end
connection = game:GetService("Players").LocalPlayer.Character.Humanoid.Died:Connect(function()
endFly()
end)
table.insert(connections, connection)
game:GetService("RunService").RenderStepped:Connect(function()
if flying then
bodyGyro.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.Torso.Position, workspace.CurrentCamera.CFrame.p) * CFrame.Angles(0,math.rad(180),0)
bodyVelocity.Velocity = ((bodyGyro.CFrame.lookVector + Vector3.new(0,0.25,0)) * (ControlStatus['w']+ControlStatus['s'])) + ((bodyGyro.CFrame * CFrame.new(ControlStatus['a']+ControlStatus['d'],(ControlStatus['q']+ControlStatus['e']),0).p) - (bodyGyro.CFrame.p))
game:GetService("Players").LocalPlayer.Character.Humanoid.PlatformStand = true
end
end)
game:GetService("Players").LocalPlayer:GetMouse().KeyDown:Connect(function(key)
for i,v in pairs(Controls) do
if key == v then
ControlStatus[key] = ControlInd[i]*flySpeed*25
end
end
end)
game:GetService("Players").LocalPlayer:GetMouse().KeyUp:Connect(function(key)
for i,v in pairs(Controls) do
if key == v then
ControlStatus[key] = ControlInd[i]*0