forked from M4lw4reT3sts/scripts-cheats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincompletecmdslist
More file actions
3124 lines (2868 loc) · 73.5 KB
/
incompletecmdslist
File metadata and controls
3124 lines (2868 loc) · 73.5 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
--Parts of KohlsNoob's source used
--And edited.
--Even tho the cmds list doesn't have anything to do with this if anyone types cmds this script will load
local say = function(...)game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(...,"All")end
local prefix = ","
local LocalPlayer = game.Players.LocalPlayer
local idhider = string.rep(0, 500)
local commands = { }
local keybinds = { }
local keybinds_ = { }
local PlrChar = workspace:WaitForChild(LocalPlayer.Name)
local version_ = "c748cX03bg1aCM5xg23G"
local RunService = game:GetService("RunService")
local UIS = game:GetService("UserInputService")
local spamming = false
local DiscoFog = false
local antiMusic = false
local antiOof = true
local AntiBlind = false
local safeSpamming = true
local AntiCrash = false
local AntiFling = false
local Playing = false
local antivg = false
local antipunish = true
local noadminp_ = false
local AntiFreeze = true
local AntiAttach = false
local gallp = false
local rpads = false
local rfloor = false
local rbricks = false
local rbox = false
local tp = false
local pollActive = false
local antiAbuse = false
local antilag = false
local antilog = false
local antijail = false
local antiseizure = true
local noclip = false
local killer = nil
local colorPart = Instance.new("Part", workspace)
local spamSpeed = 0
local MusicLocked = "0"
local ssloopCount = 40
local rspeed = .5
local banGearTargets = { }
local floorkilltargets = { }
local gameEliminated = { }
local gamePlayers = { }
local banGearTargets2 = { }
local pollVoted = { }
local pollAnswers = {
answers = {},
votes = {}
}
local whitelisted = { }
local blacklisted = {
perm = {},
nonperm = {},
floorkill = {888829172,1091801984}
}
local lUdiF2TGD = false
local songList = {
"lol",
"ASTRONOMIA (coffin dance oof version)",
"Who? (Ft. Shiloh Dynasty)",
"Santa Tell Me - Ariana Grande",
"Running in the 90s (Epic death sound cover)",
"CRAB RAVE OOF",
"Undertale Rick roll",
"#BrooklynBloodPop!",
"Among Us Drip",
"Baby I'm Yours",
"kitchen in the dungeon",
"Havana - Camila Cabello (Remix)",
"Ehrling - Dance With Me",
"Clarx & Harddope - Castle",
"TheFatRat - Monody (Remix for Rolling Sky)",
"Adventure (Cheat Code)",
"never gonna give you up - rick astley (oof version)",
"Bacon Song",
"THE FBI OPEN UP",
"Astronomia",
"flamingo",
"golden wind",
"This Is The Best Burrito Ive Ever Eaten - Parry Gr",
"Gary Come Home but its the ROBLOX death sound",
"Nightcore - My Life's A Party",
"Jack Stauber - Buttercup",
"Syn Cole - Feel Good [NCS Release]",
"Beat Your Competition - Vibe tracks",
"Jim Yosef - Firefly",
"Ship Wrek & Zookeepers - Ark",
"Diviners - Savannah (feat. Philly K)",
"Disfigure - Blank",
"You've Been Trolled"
}
songID = {
"6754519148",
"4948489007",
"4461953104",
"2546949814",
"3307959033",
"2590490779",
"332422144",
"6371179964",
"6486359635",
"2649314010",
"5648499584",
"2146629043",
"1941051627",
"5173015970",
"6601148619",
"247569283",
"591769409",
"1222237131",
"6362125458",
"4267446184",
"4668472585",
"3590110076",
"292716776",
"716663768",
"248144653",
"2325704183",
"379791401",
"364319796",
"265349844",
"391592859",
"2627670821",
"561656301",
"229681899"
}
local kits = {
gears = {
default = {
"225921000",
"170897263",
"1208300505",
"139578207",
"45177979",
"212296936",
"125013769"
},
ranged = {
"125013830",
"60357972",
"90718686",
"127506257",
"212296936",
"90718350",
"90718505",
"79446473"
},
melee = {
"83704165",
"268586231",
"1103011681",
"87361662",
"93136746",
"68539623",
"68848741",
"156467990"
},
periastron = {
"159229806",
"93136802",
"108158379",
"73829193",
"120307951",
"69499437",
"99119240",
"80661504"
},
cars = {
"164207580",
"1929597345",
"335132838",
"253519495",
"1402446243"
},
explosive = {
"19644347",
"11563251",
"90718505",
"243788010",
"11999247",
"50454086"
}
},
names = {
"default",
"ranged",
"melee",
"periastron",
"cars",
"explosive"
}
}
colorPart.Anchored = true
colorPart.Transparency = 1
colorPart.CanCollide = false
local dbqyda421 = { }
local DhwYyq9d = false
local c63241 = .1
local chat
function ran84714()
local s = {
{"a","b","c","d","f","g","h","l","x","m"},
{1,2,3,4,5,6,7,8,9,0}
}
local a = ""
local function r(...) return math.random(...) end
for i = 1,10 do
local b = r(1,2)
if b == 1 then
local c = s[r(1,2)][r(1,10)]
if type(c) == "string" then
c = c:upper()
end
a = a..c
else
a = a..s[r(1,2)][r(1,10)]
end
end
return(tostring(a))
end
if game.PlaceId == 7525794236 then
local dh81 = true
chat = function(s) table.insert(dbqyda421,#dbqyda421+1,s) end
local nfqsdia = { }
spawn(function()
while wait() do
if #dbqyda421 ~= 0 and not DhwYyq9d then
DhwYyq9d = true
dh81 = not dh81
if dh81 and not string.match(dbqyda421[1],">") then
game.Players:Chat(":"..dbqyda421[1])
else
game.Players:Chat(dbqyda421[1])
end
table.insert(nfqsdia,#nfqsdia+1,dbqyda421[1])
table.remove(dbqyda421,1)
if #nfqsdia >= 2 then
nfqsdia = {}
delay(c63241,function()
DhwYyq9d = false
if c63241 >= .3 then
c63241 = .1
else
c63241 += .05
end
end)
else
DhwYyq9d = false
end
elseif #dbqyda421 == 0 then
c63241 = .1
end
end
end)
spawn(function()
while wait(.11) do
if #dbqyda421 == 0 then
nfqsdia = { }
end
end
end)
else
chat = function(...)game.Players:Chat(...)end
end
local s14251 = [[
]]
local msg = function(msg) chat("h "..string.rep(s14251,50)..msg..string.rep(s14251,50)) end
function notifiiy(msg)
game.StarterGui:SetCore("SendNotification", {
Title = "kys fag";
Text = msg;
Icon = "rbxthumb://type=Asset&id=7371452811&w=150&h=150",
Duration = 5;
})
end
function remind(msg)
game.StarterGui:SetCore("SendNotification", {
Title = "Reminder";
Text = msg;
Duration = 5;
})
end
function infnotif(msg)
game.StarterGui:SetCore("SendNotification", {
Title = "noobus infinitus";
Text = msg;
Duration = 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
})
end
if _G.KillerSploitExecuted then return notif("Stop you fucker") end
_G.KillerSploitExecuted = true
local function movePart(target, plr)
local size = target.Size
local pos = target.Position
local size2 = PlrChar["Torso"].Size
local size3 = PlrChar["Right Arm"].Size
local sss = true
local eee = true
local oldPos = PlrChar.HumanoidRootPart.CFrame
spawn(function()
while sss do
PlrChar.Humanoid:ChangeState(11)
PlrChar.HumanoidRootPart.CFrame = CFrame.new(pos.X, pos.Y, pos.Z-(size.X/2)-size2.X/2) * CFrame.Angles(0, math.rad(90), 0)
game.Players:Chat("unpunish me "..tostring(math.random(0,100)))
wait()
end
end)
wait(.3)
sss = false
if plr then
chat("tp me "..plr)
chat("tp me "..plr)
else
for i = 1, 10 do
chat("skydive me "..tostring(math.random(0,100)))
end
end
LocalPlayer.CharacterAdded:Connect(function(char)
if eee then
eee = false
end
end)
chat("reset me")
repeat wait()
until eee == false
end
local Pads = game:GetService("Workspace").Terrain["_Game"].Admin.Pads
local Players = game:GetService("Players")
local function RemoveSpaces(String)
return String:gsub("%s+", "") or String
end
local function FindPlayer(String)
String = RemoveSpaces(String)
for _, _Player in pairs(Players:GetPlayers()) do
if _Player.Name:lower():match('^'.. String:lower()) then
return _Player
end
end
return nil
end
local function startup_cmds()
chat(prefix.."lol")
chat(prefix.."Noobsploit on top")
end
local function getAdmins()
if game.GameId == 2287536067 then return end
local S = pcall(function()
for i,v in pairs(game:GetService("Workspace").Terrain["_Game"].Admin.Pads:GetChildren()) do
firetouchinterest(PlrChar["Left Leg"], v:FindFirstChild("Head"), 0)
firetouchinterest(PlrChar["Left Leg"], v:FindFirstChild("Head"), 1)
wait()
end
end)
if not S then
notif("An error occured!")
end
end
local function Regen()
local S = pcall(function()
fireclickdetector(workspace.Terrain._Game.Admin.Regen.ClickDetector, 1)
fireclickdetector(workspace.Terrain._Game.Admin.Regen.ClickDetector, 0)
end)
if not S then
notif("Regen pad not found!")
end
end
spawn(function()
local Tween = game:GetService("TweenService")
while true do
local color = Tween:Create(colorPart, TweenInfo.new(rspeed), {Color = Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255))})
color:Play()
wait(rspeed)
end
end)
RunService.RenderStepped:Connect(function()
if noclip then
PlrChar.Humanoid:ChangeState(11)
end
if not Pads:FindFirstChild(LocalPlayer.Name.."'s admin") and game.PlaceId ~= 7525794236 then
if not Pads:FindFirstChild("Touch to get admin") then
Regen()
end
firetouchinterest(PlrChar["Left Leg"], Pads["Touch to get admin"]:FindFirstChild("Head"), 1)
firetouchinterest(PlrChar["Left Leg"], Pads["Touch to get admin"]:FindFirstChild("Head"), 0)
end
end)
local items = {"Smoke","ForceField","Explosion","Fire","Sparkles"}
workspace.DescendantAdded:Connect(function(I)
if AntiFling and I.Name == "BFRC" and I:IsDescendantOf(PlrChar) then
PlrChar.Humanoid.Sit = false
PlrChar.Torso.AssemblyLinearVelocity = Vector3.new(0,0,0)
game:GetService'RunService'.Heartbeat:Wait()
I:Destroy()
PlrChar.Torso.AssemblyLinearVelocity = Vector3.new(0,0,0)
end
if antilag then
local c = false
for i,v in pairs(items) do
if I:IsA(v) then
c = true
end
end
if c then
game:GetService'RunService'.Heartbeat:Wait()
I:Destroy()
end
end
if antijail and string.match(I.Name,LocalPlayer.Name) then
chat("unjail me")
game:GetService'RunService'.Heartbeat:Wait()
I:Destroy()
end
if I.Name:lower() == "ice" and AntiFreeze then
chat("thaw me")
for i,v in pairs(PlrChar:GetChildren()) do
pcall(function()
v.Anchored = false
end)
end
game:GetService'RunService'.Heartbeat:Wait()
pcall(function()
I:Destroy()
end)
end
if antiseizure and I.Name == "Seizure" and I:IsDescendantOf(PlrChar) then
PlrChar.Torso.AssemblyLinearVelocity = Vector3.new(0,0,0)
game:GetService'RunService'.Heartbeat:Wait()
I:Destroy()
PlrChar.Torso.AssemblyLinearVelocity = Vector3.new(0,0,0)
PlrChar.Humanoid:ChangeState("GettingUp")
end
end)
local function ConnectP(plr)
local IsBlacklisted = false
local perm = false
local uwyfgs = true
local floorkill_ = false
for i,v in pairs(blacklisted.perm) do
if plr.UserId == v then
perm = true
IsBlacklisted = true
end
end
for i,v in pairs(blacklisted.nonperm) do
if plr.UserId == v then
IsBlacklisted = true
end
end
for i,v in pairs(blacklisted.floorkill) do
if v == plr.UserId then
floorkill_ = true
game.Players:Chat(">floorkill "..plr.Name)
chat("respawn "..plr.Name)
end
end
if IsBlacklisted and not perm then
chat("punish "..plr.Name)
elseif IsBlacklisted and perm then
wait(1)
spawn(function()
while uwyfgs do
msg("anti crash enabled so shu.t up and dont complain")
wait(1)
end
end)
blacklistAntiCrash = true
local anti = RunService.RenderStepped:Connect(function()
chat("setgrav all 9e9")
end)
spawn(function()
while blacklistAntiCrash do
chat("setgrav all 9e9")
wait()
end
end)
game.Players.PlayerRemoving:Connect(function(POOP)
if uwyfgs and POOP == plr then
uwyfgs = false
anti:Disconnect()
blacklistAntiCrash = false
chat("respawn all")
end
end)
end
plr.Chatted:Connect(function(msg)
local IsWhitelisted = false
for i,v in pairs(whitelisted) do
if v == plr then
IsWhitelisted = true
end
end
if pollActive then
local voted = false
for i,v in pairs(pollVoted) do
if v == plr then
voted = true
end
end
local yes = false
local ehh
for i,v in pairs(pollAnswers.answers) do
if v:lower() == msg:lower() then
yes = true
ehh = i
end
end
if yes then
if voted then return chat("pm "..plr.Name.." you already voted.") end
table.insert(pollVoted, #pollVoted+1, plr)
pollAnswers.votes[ehh] += 1
end
end
if IsWhitelisted then
if string.sub(msg:lower(), 0, 1) == prefix then
if msg:split(prefix)[1] == "" then
local msgs = msg:split(prefix)
msgs = msgs[2]:split(" ")
msgs[1] = msgs[1]:lower()
local cmd = msgs[1]
if cmd == "spam" or cmd == "sspam" or cmd == "play" or cmd == "paintm" or cmd == "sm" or cmd == "msg" then
table.remove(msgs, 1)
for i,v in pairs(msgs) do
if i ~= #msgs then
table.remove(msgs, i)
table.insert(msgs, i, v.." ")
end
end
commands[cmd](table.concat(msgs))
else
if msgs[2] then
commands[msgs[1]](msgs[2])
else
commands[msgs[1]]()
end
end
end
end
end
end)
spawn(function()
repeat wait()
until plr.Character ~= nil
local ban_gear2 = false
for i,v in pairs(banGearTargets2) do
if v == plr.Name then
ban_gear2 = true
end
end
if ban_gear2 then
local OldPos = PlrChar.HumanoidRootPart.CFrame
chat("gear me 82357101")
local tool = LocalPlayer.Backpack:WaitForChild("PortableJustice")
PlrChar.Humanoid:EquipTool(tool)
chat("tp me "..plr.Name)
repeat tool:WaitForChild("MouseClick"):FireServer(plr.Character) wait()
until plr.Character:FindFirstChild("Part")
chat("reset "..plr.Name)
PlrChar.HumanoidRootPart.CFrame = OldPos
PlrChar.Humanoid.Jump = true
PlrChar.Humanoid:UnequipTools(tool)
tool.Parent = nil
end
end)
local db1 = false
local db2 = false
local db3 = false
RunService.RenderStepped:Connect(function()
pcall(function()
if antiAbuse and plr.PlayerGui:FindFirstChild("EFFECTGUIBLIND") and not db3 then
db3 = true
chat("unblind "..plr.Name)
msg("Anti-Abuse: "..plr.Name.." has been unblinded")
delay(.3, function()
db3 = false
end)
end
local c_ = false
for i,v in pairs(banGearTargets) do
if plr == v then
c_ = true
end
end
local tool = plr.Backpack:FindFirstChildOfClass("Tool") or plr.Character:FindFirstChildOfClass("Tool")
if plr.Backpack:FindFirstChild("VampireVanquisher") or plr.Character:FindFirstChild("VampireVanquisher") then
if not db2 and antivg then
db2 = true
chat("ungear "..plr.Name)
chat("pm "..plr.Name.." [Automatic] you can't have vampire gear lol")
delay(.3, function()
db2 = false
end)
end
end
if tool and c_ then
if not db1 then
db1 = true
chat("ungear "..plr.Name)
chat("pm "..plr.Name.." [Automatic] you are banned for using gears in this server lol")
delay(.3, function()
db1 = false
end)
end
end
local _c2 = false
for i,v in pairs(plr.Backpack:GetChildren()) do
if v.Name ~= "Bombo'sSurvivalKnife" and v.Name ~= "Torch" then
_c2 = true
end
end
if plr.Character:FindFirstChildOfClass("Tool").Name ~= "Torch" and plr.Character:FindFirstChildOfClass("Tool").Name ~= "Bombo'sSurvivalKnife" then
_c2 = true
end
if _c2 and Playing then
chat("ungear "..plr.Name)
chat("gear "..plr.Name.." 31839337")
if plr == killer then
chat("gear "..plr.Name.." 121946387")
end
chat("pm "..plr.Name.." other gears are not allowed during a game")
end
end)
end)
plr.Chatted:Connect(function(m)
if m:lower() == "noobsploit" and plr ~= LocalPlayer then
msg(plr.Name.." is talking about the best script.")
end
if string.sub(m, 0, 1) == ":" then
m = string.sub(m, 2, #m)
end
m = m:lower()
local mm_ = m:split(" ")
if mm_[1] == "size" and AntiCrash then
if mm_[3] == "0.3" or mm_[3] == ".3" then
local t
if mm_[2] == "me" then
t = plr.Name
elseif mm_[2] == "all" then
t = "all"
end
local anti3115 = RunService.RenderStepped:Connect(function()
chat("size all 10")
end)
delay(15, function()
anti3115:Disconnect()
wait()
chat("unsize all")
end)
msg("[Automatic] "..plr.Name.." failed to crash the server")
end
end
local t_251 = RemoveSpaces(m:lower()):split(" ")[1]
if t_251 == "clr" or t_251 == "clear" then
if antiMusic then
chat("music 000000000000000000000000000000000000000000000000000000000000000000000000"..MusicLocked)
msg("[Automatic] current music is locked")
end
elseif m:lower() == "fix" and Playing then
wait()
chat("time 0")
chat("fogend 25")
chat("fogcolor 0 0 0")
elseif t_251:split(" ")[1] == "logs" and antilog then
for i=1,50 do
chat("fire no logs for u")
end
end
end)
plr.CharacterAdded:Connect(function(char)
spawn(function()
char:WaitForChild("Humanoid").Died:Connect(function()
if antiAbuse then
chat("reset "..plr.Name)
msg("Anti-Abuse: "..plr.Name.." has been resetted")
end
end)
end)
if IsBlacklisted and not perm and not floorkill_ then
chat("punish "..plr.Name)
end
local check2 = false
for i,v in pairs(floorkilltargets) do
if v == plr then
check2 = true
end
end
if check2 then
chat("kill "..plr.Name)
end
char.ChildAdded:Connect(function(I)
if antiAbuse and I.Name == "ice" then
chat("thaw "..plr.Name)
msg("Anti-Abuse: "..plr.Name.." has been unfroze")
end
local C = false
for i,v in pairs(gameEliminated) do
if v == plr then
C = true
end
end
if I.Name == "ForceField" and not C and Playing then
chat("unff "..plr.Name)
end
end)
spawn(function()
char:WaitForChild("Torso").ChildAdded:Connect(function(I)
if I.Name == "Weld" and AntiAttach then
chat("reset "..plr.Name)
chat("pm "..plr.Name.." [Automatic] you can't attach to parts lol")
end
end)
end)
end)
repeat wait()
until plr.Character ~= nil
local ChAr = plr.Character
spawn(function()
ChAr:WaitForChild("Torso").ChildAdded:Connect(function(I)
if I.Name == "Weld" and AntiAttach then
chat("reset "..plr.Name)
chat("pm "..plr.Name.." [Automatic] you can't attach to parts lol")
end
end)
end)
ChAr.ChildAdded:Connect(function(I)
if antiAbuse and I.Name == "ice" then
chat("thaw "..plr.Name)
msg("Anti-Abuse: "..plr.Name.." has been unfroze")
end
local C = false
for i,v in pairs(gameEliminated) do
if v == plr then
C = true
end
end
if I.Name == "ForceField" and not C and Playing then
chat("unff "..plr.Name)
end
end)
end
local ctrl = false
UIS.InputBegan:Connect(function(input,dD89D8w2)
if input.KeyCode == Enum.KeyCode.LeftControl or input.KeyCode == Enum.KeyCode.RightControl then
ctrl = true
end
if input.UserInputType == Enum.UserInputType.MouseButton1 and ctrl and tp then
local pos = LocalPlayer:GetMouse().Hit.p
local ori = PlrChar.HumanoidRootPart.Orientation
PlrChar.HumanoidRootPart.CFrame = CFrame.new(pos.X, pos.Y+2.999, pos.Z) * CFrame.Angles(math.rad(ori.X),math.rad(ori.Y),math.rad(ori.Z))
end
if input.KeyCode and not dD89D8w2 then
local cmd = keybinds[input.KeyCode]
if cmd then
chat(cmd)
game.Players:Chat(">"..cmd)
end
end
end)
UIS.InputEnded:Connect(function(input)
if input.KeyCode == Enum.KeyCode.LeftControl or input.KeyCode == Enum.KeyCode.RightControl then
ctrl = false
end
end)
game.Players.PlayerRemoving:Connect(function(plr)
for i,v in pairs(gamePlayers) do
if v == plr and Playing then
table.remove(gamePlayers, i)
msg(plr.Name.." has been eliminated")
say(plr.Name.." has been eliminated")
end
end
end)
RunService.RenderStepped:Connect(function()
if AntiCrash then
chat("setgrav all 9e9")
end
end)
RunService.Heartbeat:Connect(function()
if AntiCrash then
chat("setgrav all 9e9")
end
end)
spawn(function()
while wait() do
if AntiCrash then
chat("setgrav all 9e9")
end
end
end)
workspace.Terrain._Game.Folder.ChildAdded:Connect(function(I)
if I.Name:split(" ")[2] == "jail" and antiAbuse then
chat("unjail "..I.Name:split("'")[1])
msg("Anti-Abuse: "..I.Name.." has been removed")
end
end)
LocalPlayer.CharacterAdded:Connect(function(char)
PlrChar = char
PlrChar:WaitForChild("Humanoid").Died:Connect(function()
if antiOof then
chat("reset me")
chat("ff me")
end
end)
PlrChar.ChildAdded:Connect(function(I_)
if I_.Name == "ice" and AntiFreeze then
chat("thaw me")
end
end)
end)
game.Lighting.ChildAdded:Connect(function(I)
if game.Players:GetPlayerFromCharacter(I) and antiAbuse then
chat("unpunish "..I.Name)
msg("Anti-Abuse: "..I.Name.." has been unpunished")
end
if I == PlrChar and antipunish then
chat("unpunish me")
end
if noadminp_ then
wait()
PlrChar.Parent = workspace
end
end)
PlrChar:WaitForChild("Humanoid").Died:Connect(function()
if antiOof then
chat("reset me")
chat("ff me")
end
end)
spawn(function()
PlrChar:WaitForChild("Torso").ChildAdded:Connect(function(I)
if I.Name == "BFRC" and AntiFling then
PlrChar.Humanoid.Sit = false
local loop = true
delay(.3, function()
loop = false
end)
while loop do
PlrChar.Torso.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
wait()
end
wait()
I:Destroy()
end
end)
end)
for i,v in pairs(game.Players:GetPlayers()) do
ConnectP(v)
end
game.Players.PlayerAdded:Connect(function(plr)
ConnectP(plr)
local IsBlacklisted = false
for i,v in pairs(blacklisted) do
for _,v2 in pairs(v) do
if v2 == plr.UserId then
IsBlacklisted = true
end
end
end
wait()
if IsBlacklisted then
msg("blacklisted user joined: "..plr.Name)
end
end)
local Folder243 = workspace.Terrain._Game.Folder
Folder243.ChildAdded:Connect(function(A)
if A:IsA("Sound") then
local Id = tostring(A.SoundId)
if string.sub(Id, 33, #Id) ~= MusicLocked and antiMusic then
chat("music 0000000000000000000000000000000000000000000000000000000000000000000000000000000"..MusicLocked)
msg("[Automatic] current music is locked")
end
if Playing and string.sub(Id, 33, #Id) ~= "143382469" then
chat("music 143382469")
end
end
end)
LocalPlayer:WaitForChild("PlayerGui").ChildAdded:Connect(function(I)
if I.Name == "EFFECTGUIBLIND" and AntiBlind then
wait()
I:Destroy()
end
end)
RunService.RenderStepped:Connect(function()
if gallp then
getAdmins()
end
end)
game.Players.LocalPlayer.Chatted:Connect(function(msg)
if not lUdiF2TGD then return end
if string.sub(msg:lower(), 0, 1) == prefix then
if msg:split(prefix)[1] == "" then
local msgs = msg:split(prefix)
msgs = msgs[2]:split(" ")
msgs[1] = msgs[1]:lower()
local cmd = msgs[1]
if cmd == "code" then
return loadstring(string.sub(msg, 7,#msg))()
end
if cmd == "poll" then
commands.poll(msg:sub(7,#msg):split(",")[1], msg:sub(7,#msg):split(",")[2])
return
end
if cmd == "spam" or cmd == "sspam" or cmd == "play" or cmd == "paintm" or cmd == "sm" or cmd == "msg" then
table.remove(msgs, 1)
for i,v in pairs(msgs) do
if i ~= #msgs then
table.remove(msgs, i)
table.insert(msgs, i, v.." ")
end
end
commands[cmd](table.concat(msgs))
elseif cmd == "keybind" then
table.remove(msgs,1)
commands.keybind(msgs)
else
if msgs[3] then
commands[msgs[1]](msgs[2], msgs[3])
elseif msgs[2] then
if msgs[2]:lower() == "me" then
msgs[2] = LocalPlayer.Name
elseif msgs[2]:lower() == "random" then
local plrs = game.Players:GetPlayers()
msgs[2] = plrs[math.random(1,#plrs)].Name
end
commands[msgs[1]](msgs[2])
else
commands[msgs[1]]()
end
end
end
end
end)
wait()
commands.dsaok = function()
local DhD22q6Dh = workspace.Terrain._Game.Workspace.Obby
local cDJd82ne = DhD22q6Dh:Clone()
for _,DJ2a2 in pairs(cDJd82ne:GetChildren()) do
for _,D9J28v2 in pairs(DJ2a2:GetChildren()) do
D9J28v2:Destroy()
end
DJ2a2.Touched:Connect(function() end)
end
cDJd82ne.Parent = workspace.Terrain._Game.Workspace
DhD22q6Dh:Destroy()
notif("you are immune to obby kill parts")
end
commands.resetp = function()
local s = pcall(function()
Regen()
end)
end
commands.admins = function()