-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsource.lua
17311 lines (15222 loc) · 647 KB
/
source.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
--[[
___ __ ________ ___ ___ ___ ________ ___ ___ _________ _______
|\ \|\ \ |\ __ \|\ \|\ \|\ \ |\ ____\|\ \ |\ \|\___ ___\\ ___ \
\ \ \/ /|\ \ \|\ \ \ \\\ \ \ \ \ \ \___|\ \ \ \ \ \|___ \ \_\ \ __/|
\ \ ___ \ \ \\\ \ \ __ \ \ \ \ \_____ \ \ \ \ \ \ \ \ \ \ \ \_|/__
\ \ \\ \ \ \ \\\ \ \ \ \ \ \ \____\|____|\ \ \ \____\ \ \ \ \ \ \ \ \_|\ \
\ \__\\ \__\ \_______\ \__\ \__\ \_______\____\_\ \ \_______\ \__\ \ \__\ \ \_______\
\|__| \|__|\|_______|\|__|\|__|\|_______|\_________\|_______|\|__| \|__| \|_______| X1.07
View the source here: https://kohlslite.pages.dev/source.lua
Kohlslite is updated here: https://github.com/S-PScripts/kohlslite/blob/main/source.lua
Debugged with: https://glot.io/new/lua
KohlsLite is a free, open-source script for the Roblox game created by agspureiam, Kohls Admin House (KAH).
This script was created by ScriptingProgrammer (Roblox) / ts2021 (Discord) / S-PScripts (GitHub).
You can play KAH (NBC version) here: https://www.roblox.com/games/112420803/Kohls-Admin-House-NBC-Updated
You can also use it for KAH BC but barely anyone plays it. This script isn't recommended for KAH NP (it's not owned by agspureiam, there's a lot of things different).
KohlsLite is currently the longest/largest Kohls Admin House script freely available. SCV3-VAR and Kozy.Docx are longer than KL but they are paid and not public respectively.
This script is not updated much due to school and other interests, but I'll still add more stuff to come.
If I ever remake this script, it will be called KohlsSpark. But I probably will not.
This script was built from the ground up. KohlsLite is not a fork of any other scripts (e.g: Shortcut v2 src1 being an extension to Shortcut v1).
KohlsLite is a bit like a mixture of all the scripts that already exist in KAH such as:
-- > CMD (v1) [by quiving - the same person that made the Solara executor]
-- > CMD Y [by quiving]
-- > CMD v3 (Pi) [by quiving]
-- > Shortcut v1 [by SnowClan_8342/yeemi]
-- > Shortcut v2 [by SnowClan_8342/yeemi]
-- > Shortcut v3 [by Tech]
-- > Shortcut v3 VAR [don't have the source] [by Tech]
-- > ii's Stupid Admin [by iiDk]
-- > PR Script old [by Atprog]
-- > KohlsNoob [by gamingkhoaito#1014 and haroldjd2017ipad#4295]
-- > KohlsCool [by sergioesquina/kohlscool]
-- > Noobsploit [by NoobSploit]
-- > Jotunnheim [by Jotunn]
-- > Shazam [by Tokio]
-- > Route [by Dizzy]
-- > SimpleKAH [by lnfiniteCoder]
-- > XKah [by lnfiniteCoder]
-- > Solinium [by Knocks]
-- > Infinite Yield [by EdgeIY]
-- > Proton Admin [by Digitality]
-- > Many scripts from the KAH script archive by Damix [View it here: S-PScripts/kah-fork]
Some of the code here is from other creators, credit has been given, but quite a lot is my own and also some commands can't be changed code-wise that much.
There are no watermarks in this script. I included watermarks in my script when I first created it, but I wanted to make this script more 'premium' like Shortcut v3-VAR.
However, this script DOES have back doors (dev section) due to idiots abusing like crazy using this script.
If you want to support this script, you can donate Robux to me on Roblox, especially since this script doesn't have much advertisements.
Please do not edit this script by simply removing the dev section and then proceeding to abuse in KAH. It makes me really annoyed.
Instead, you can make your own script and take stuff from here if necessary.
Please don't go abusing like crazy using this script. I made this free/open-source and don't want idiots doing stuff that forces me to make this paid/obfuscated.
Other stuff:
-> There is no command handler and this script looks terrible to be honest. I'm not making a full rewrite of this script as that would take ages.
I tried to do so but got bored and gave up.
-> I know my script is inconsistent when using Game with and without GetService... but I don't care.
-> KohlsLite has been moved to this repo from my old repo "scripts (renamed to kohlslite-work-old)". This is because the old repo was messy and the old loadstring was clunky.
]]
--[[
Before you view the source, here's some things you might like to know:
- Kohls Admin House is a dead inactive game. It only really gets like 10 players at max.
- Even Prison Life, a game without any major update since its v2.0 release 7 years ago, gets at least 500 people playing, even 1,000 sometimes.
- This is partially because it doesn't get boring fast unlike KAH. KAH is just you trying some admin commands, nothing else.
- Therefore, do not expect big updates for this script anymore.
- You can just use Solinium for a part builder.
- This script also already has the most antis so I won't add antis for individual players/rewrite the anti system.
Credits to Dawninja for giving me sense because, to be honest, I kind of needed to know
TS2021 17/2/25
]]
-- Script name = KohlsLite
getgenv().scriptname = "KohlsLite"
-- Notifications
local function Remind(msg, length)
game.StarterGui:SetCore("SendNotification", {
Title = "KohlsLite X1.07", -- Now includes X since main updates are completed, still many to add though.
Text = msg,
Duration = length or 1
})
end;
-- Check if KohlsLite is already executed
if getgenv().kohlsexecuted then
return
Remind("You've already executed KohlsLite!")
end
getgenv().ignorewronggame = false
-- Place checker
if getgenv().ignorewronggame then
--
else
if game.PlaceId ~= 112420803 and game.PlaceId ~= 115670532 then
local response = Instance.new("BindableFunction")
function response.OnInvoke(answer)
if answer == "Yes" then
game:GetService("TeleportService"):Teleport(112420803, game:GetService("Players").LocalPlayer) -- nbc join only.
end
end
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "KohlsLite Manager",
Text = "You are not in Kohls Admin House. Would you like to join KAH [NBC]?",
Duration = math.huge,
Callback = response,
Button1 = "Yes",
Button2 = "No"
})
return
end
end
-- Edited knock's autocrasher
-- Original can be found here: https://github.com/blueskykah/Solinium/blob/main/Solinium%20Autocrasher
-- This should be in your autoexecute!!!!!!!!!!!!!!!!!!
function acperm()
task.spawn(function()
while true do
task.wait(0)
if perm2 == true then
if not game:GetService("Workspace").Terrain["_Game"].Admin.Pads:FindFirstChild(game.Players.LocalPlayer.Name .. "'s admin") then
gotapad = false
if game:GetService("Workspace").Terrain["_Game"].Admin.Pads:FindFirstChild("Touch to get admin") then
local pad = game:GetService("Workspace").Terrain["_Game"].Admin.Pads:FindFirstChild("Touch to get admin"):FindFirstChild("Head")
local padCFrame = game:GetService("Workspace").Terrain["_Game"].Admin.Pads:FindFirstChild("Touch to get admin"):FindFirstChild("Head").CFrame
task.wait(0.125)
pad.CanCollide = false
repeat task.wait() until game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
pad.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
task.wait(0.125)
pad.CFrame = padCFrame
pad.CanCollide = true
gotapad = true
else
fireclickdetector(game:GetService("Workspace").Terrain["_Game"].Admin.Regen.ClickDetector, 0)
end
end
end
end
end)
end
function shopac() -- Autocrasher serverhop
if not ratelimited then
local NBC =
game:GetService("HttpService"):JSONDecode(
game:HttpGet("https://games.roblox.com/v1/games/112420803/servers/Public?sortOrder=Desc&limit=100&excludeFullGames=true")
)
local BC =
game:GetService("HttpService"):JSONDecode(
game:HttpGet("https://games.roblox.com/v1/games/115670532/servers/Public?sortOrder=Desc&limit=100&excludeFullGames=true")
)
if NBC["errors"] and getgenv().actype == "All" or getgenv().actype == "NBC" then
print("Failed to server hop. Retrying in 5 seconds...")
task.spawn(function()
ratelimited = true
task.wait(5)
ratelimited = false
end)
return
end
if BC["errors"] and getgenv().actype == "All" or getgenv().actype == "BC" then
print("Failed to server hop. Retrying in 5 seconds...")
task.spawn(function()
ratelimited = true
task.wait(5)
ratelimited = false
end)
return
end
print("Checking for servers...")
local NBC_data = NBC.data
local BC_data = BC.data
local servers_found = {}
if getgenv().actype == "All" or getgenv().actype == "NBC" then
for i, v in pairs(NBC_data) do
if type(v) == "table" and v.id ~= game.JobId and tonumber(v.playing) < tonumber(v.maxPlayers) and not table.find(v.playerTokens, getgenv().playertoken) then
table.insert(servers_found, {["Version"] = "NBC", ["Job"] = v.id})
end
end
end
if getgenv().actype == "All" or getgenv().actype == "BC" then
for i, v in pairs(BC_data) do
if type(v) == "table" and v.id ~= game.JobId and tonumber(v.playing) < tonumber(v.maxPlayers) and not table.find(v.playerTokens, getgenv().playertoken) then
table.insert(servers_found, {["Version"] = "BC", ["Job"] = v.id})
end
end
end
if #servers_found > 0 then
local servertohop = servers_found[math.random(1, #servers_found)]
if servertohop["Version"] == "NBC" then
game:GetService("TeleportService"):TeleportToPlaceInstance(112420803, servertohop["Job"])
elseif servertohop["Version"] == "BC" then
game:GetService("TeleportService"):TeleportToPlaceInstance(115670532, servertohop["Job"])
else end
else
print("No servers available...")
end
end
end
--[[
To be added to the loadstring.
getgenv().autocrasher = false -- Turn this on and it will autocrash KAH's servers.
getgenv().playertoken = ' ' -- You must get this. Go to kohlslite.pages.dev/Assets/PLAYERTOKEN.lua for instructions.
getgenv().acgames = "All" -- What KAH games you want to crash ("All" for NBC and BC, "NBC" for NBC only, "BC" for BC only).
getgenv().whitelistedppl = {"ScriptingProgrammer"} -- It will not crash servers that have whitelisted players.
getgenv().perm = false -- If you don't have the perm gamepass, turn this on and it will give you a pad.
getgenv().acmode = "Dog" -- How you want to crash the server (Dog, Freeze, Shield).
]]
if getgenv().autocrasher then
if getgenv().playertoken then
if getgenv().acgames then
if getgenv().acgames == "All" or getgenv().acgames == "NBC" or getgenv().acgames == "BC" then
--
elseif getgenv().acgames == "NP" then
getgenv().acgames = "All"
print("NP is unsupported. Crashing NBC and BC as default.")
else
getgenv().acgames = "All"
print("Autocrash games invalid, crashing NBC and BC as default.")
end
else
getgenv().acgames = "All"
print("Autocrash games not set, crashing NBC and BC as default.")
end
repeat task.wait() until game:IsLoaded()
ac_continue = true
if getgenv().whitelistedppl then
for i, v in pairs(game.Players:GetPlayers()) do
if table.find(getgenv().whitelistedppl, v.Name) then
print("Whitelisted player found: " .. v.Name)
ac_continue = false
break
end
end
repeat task.wait()
shopac()
until false
end
if ac_continue then
if getgenv().perm then
perm2 = true
acperm()
else
gotapad = true
end
repeat task.wait() until gotapad == true
if getgenv().acmode then
if getgenv().acmode == "Dog" then
for i = 1,100 do
Chat("clone all all all discord")
Chat("dog all all all discord")
end
elseif getgenv().acmode == "Freeze" then
for i = 1,100 do
Chat("clone all all all discord")
Chat("freeze all all all discord")
end
elseif getgenv().acmode == "Shield" then
for i = 1,100 do
Chat("shield/all/all/all")
Chat("rocket/all/all/all")
Chat("clone all all all discord")
end
else
print("Invalid auto crash mode used, using Dog as default.")
for i = 1,100 do
Chat("clone all all all discord")
Chat("dog all all all discord")
end
end
else
print("Auto crash mode unconfigured, using Dog as default.")
for i = 1,100 do
Chat("clone all all all discord")
Chat("dog all all all discord")
end
end
print("Server crashed. JobId: "..game.JobId)
task.wait(2)
repeat task.wait()
shopac()
until false
end
else
getgenv().autocrasher = false
if setclipboard then
Remind("You must have your player token to use the autocrasher. Check what has been printed in /console.", 2)
print("COPY THE CODE IN THIS WEBSITE: kohlslite.pages.dev/Assets/PLAYERTOKEN.lua")
print("It has also been copied to your clipboard.")
print("Once you have copied the code, join an empty server and run the code. Next, open a text editor like Notepad and find a string that looks like this: '5568CCBED82CD30E127119030810CE98'.")
print("Once you have found the string, copy it and input it into the playertoken variable.")
setclipboard(game:HttpGet("https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Desc&limit=100&excludeFullGames=true"))
else
Remind("You must have your player token to use the autocrasher. Check what has been printed in /console.", 2)
print("COPY THE CODE IN THIS WEBSITE: kohlslite.pages.dev/Assets/PLAYERTOKEN.lua")
print("Once you have copied the code, join an empty server and run the code. Next, open a text editor like Notepad and find a string that looks like this: '5568CCBED82CD30E127119030810CE98'.")
print("Once you have found the string, copy it and input it into the playertoken variable.")
end
end
end
-- Loader
if not game:IsLoaded() then
local notLoaded = Instance.new("Message")
notLoaded.Parent = game:GetService("CoreGui")
notLoaded.Text = "KohlsLite is waiting for the game to load..."
game.Loaded:Wait()
notLoaded:Destroy()
end
if getgenv().autocrasher then
return
end
--loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
-- Don't touch this!
getgenv().kohlsexecuted = true
-- The prefix you are using for KohlsLite. This can be of any length.
getgenv().deprefix = "."
-- The version of KohlsLite
getgenv().klversion = "X1.07"
-- KohlsLite Start Gui
kohlsgui = false
-- Chat function
local function Chat(msg)
game.Players:Chat(msg)
end
-- Speak function
local function Speak(msg)
game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
end
-- Prefix checker
local prefix
if getgenv().theprefix then
prefix = getgenv().theprefix
else
prefix = getgenv().deprefix
end
-- Defaults (you can change these)
local defaults = {".antirocket me", ".tnok", ".antikill me"} --".antimsg me"
-- Misc variables (ignore these they are for bug fixes)
local bending -- ignore
local ratelj -- ignore
local eincrash -- ignore
local notifiedRespectFiltering = false
-- Perm spoofer (speed)
local editedspeedis = 16
local editedspeed = true
-- Perm spoofer (jumppower)
local editedjumpis = 50
local editedjump = true
-- Boombox range
local bgrange = 128
-- Circa range
local circrad = 10
-- Mobile checker
local IsOnMobile = table.find({Enum.Platform.IOS, Enum.Platform.Android}, game:GetService("UserInputService"):GetPlatform()) -- From Infinite Yield
-- Auto rejoin
local autorejoin = false
-- Stats when loading
local Stats = {}
Stats.starttime = os.clock()
-- Start up scripts
local function startupScripts()
if not getgenv().autoruncmds then
for i = 1, #defaults do
Chat(defaults[i])
end
else
for i = 1, #getgenv().autoruncmds do
Chat(getgenv().autoruncmds[i])
end
end
end
-- Serverlocked users
local blacklist = {
"SlenderMan990921",
"aliihsan12345Bloxy",
"jhjssikeksms",
"grudgingDinosaur1"
}
-- Users not affected by serverlock
local whitelist = {}
-- Perm Whitelist
-- I know I should use user IDS instead but I would have to go through all these usernames and since I'm lazy, I don't have the time to do that.
-- Not to mention recoding the whitelist code
-- So if you change your username... SUCKS TO BE YOU!!!!
local pwl = {
"3akakauuky",
"3cxos",
"4g8h",
"agspureiamReal",
"Altsarecooleh",
"Anka_707587",
"apiapiccode_3",
"atprog",
"BIGpe7niss7",
"Boran78855",
"clydekash",
"D_ionte",
"darkmadeboy",
"dawninja21",
"Dawninja21alt",
"decryptionites",
"Dekryptionite",
"Di33le2",
"DionteIsCute",
"E4_DQ",
"Eggkid7",
"fats_mx",
"grimAuxiliatrix",
"IceStuds",
"idonthacklol101ns",
"Ih0temyIife",
"ihatedionte",
"ikbx",
"kevin3050ti",
"kohlslitedev",
"me_123eq",
"me_capybara",
"Me_ChurchOfSat4n",
"me_crashking",
"Milderous",
"na1nsook",
"nowhudhejeir",
"Palamode",
"Redstoneboy2008",
"ripcxo",
"ScriptingProgrammer",
"siga5167",
"SZCVAK",
"t_echl",
"t_echr",
"TheRealestOnHere",
"undertaker629",
"vgcrash",
"whatveidone",
"witnessfox22",
"wrydioda4",
"xTheChurchBells",
"YT_MATHEUSMODZ5",
-- "BANNter_Original",
}
-- Players you cannot kick
local nokick = {
"3akakauuky",
"3cxos",
"4g8h",
"agspureiamReal",
"Altsarecooleh",
"Anka_707587",
"apiapiccode_3",
"atprog",
"BIGpe7niss7",
"Boran78855",
"clydekash",
"D_ionte",
"darkmadeboy",
"dawninja21",
"Dawninja21alt",
"decryptionites",
"Dekryptionite",
"Di33le2",
"DionteIsCute",
"E4_DQ",
"Eggkid7",
"fats_mx",
"grimAuxiliatrix",
"IceStuds",
"idonthacklol101ns",
"Ih0temyIife",
"ihatedionte",
"ikbx",
"kevin3050ti",
"kohlslitedev",
"me_123eq",
"me_capybara",
"Me_ChurchOfSat4n",
"me_crashking",
"Milderous",
"na1nsook",
"nowhudhejeir",
"Palamode",
"Redstoneboy2008",
"ripcxo",
"ScriptingProgrammer",
"siga5167",
"SZCVAK",
"t_echl",
"t_echr",
"TheRealestOnHere",
"undertaker629",
"vgcrash",
"whatveidone",
"witnessfox22",
"wrydioda4",
"xTheChurchBells",
"YT_MATHEUSMODZ5",
-- "BANNter_Original",
}
-- Users that can use blacklisted gears (or gears when antigear is on)
local GWhitelisted = {}
-- Perm Gear Whitelist
local pgwl = {
"3akakauuky",
"3cxos",
"4g8h",
"agspureiamReal",
"Altsarecooleh",
"Anka_707587",
"apiapiccode_3",
"atprog",
"BIGpe7niss7",
"Boran78855",
"clydekash",
"D_ionte",
"darkmadeboy",
"dawninja21",
"Dawninja21alt",
"decryptionites",
"Dekryptionite",
"Di33le2",
"DionteIsCute",
"E4_DQ",
"Eggkid7",
"fats_mx",
"grimAuxiliatrix",
"IceStuds",
"idonthacklol101ns",
"Ih0temyIife",
"ihatedionte",
"ikbx",
"kevin3050ti",
"kohlslitedev",
"me_123eq",
"me_capybara",
"Me_ChurchOfSat4n",
"me_crashking",
"Milderous",
"na1nsook",
"nowhudhejeir",
"Palamode",
"Redstoneboy2008",
"ripcxo",
"ScriptingProgrammer",
"siga5167",
"SZCVAK",
"t_echl",
"t_echr",
"TheRealestOnHere",
"undertaker629",
"vgcrash",
"whatveidone",
"witnessfox22",
"wrydioda4",
"xTheChurchBells",
"YT_MATHEUSMODZ5",
-- "BANNter_Original",
}
-- The developer of KohlsLite
local specialperms = {
"me_123eq",
"me_crashking",
"ScriptingProgrammer",
"BIGpe7niss7",
"kohlslitedev",
"agspureiamReal",
}
-- atprog spexialpermz (Perms for non-developers)
local atprogperms = {
"atprog",
"IceStuds",
"Dekryptionite",
"minecraftgamer2012YT",
"clydekash",
"ripcxo",
"grimAuxiliatrix",
"undertaker629",
"jjjuuikjjikkju",
"FR6DDIIE",
"D_ionte",
"dawninja21",
"Dawninja21alt"
}
-- New users get blacklisted (prevent crashers)
local newplrslocked = {}
-- if new players under 21 days join they get blacklisted
local newplrautoslock = false
-- Control what is considered as a new account
local newlen = 21
-- Serverlock
local slockenabled = false
local superchargeslock = false -- insane slock
-- Auto char
local autocharid = "nll"
local autochar = false
-- Watermark
local watermark_kl = false
-- watermarK_text = "KohlsLite" (unused)
-- Loopkill
local loopkill = {}
-- Name spam
local byecam = {}
-- Car lag
local carcar = {}
-- Anti kill list, I didn't make it for any other antis so cry!
local antikill = {}
local antipunish = {}
-- Gamepass saving
-- Users that use perm will be placed here
local permusers = {}
-- Users that use persons will be placed here
local personsusers = {}
-- Auto stuff upon user joining
-- Rocket kick player
rkick_on_sight = {}
-- Crash server
crash_on_sight = {
"jhjssikeksms",
"aliihsan12345",
"aliihsan12345Bloxy",
"Unknown35864",
"UnknownHasComeBack",
"OhMyAlt000",
"Roblox_girlsfree",
"aliihsan12345isafurry",
"IIIdev",
"ihateyou"
}
-- Message kick
mkick_on_sight = {}
-- Hat kick
hatkick_on_sight = {}
-- Slow user
suser_on_sight = {}
-- Furry user (9jn)
furry_on_sight = {}
-- Gearban user
gb_on_sight = {}
-- Variables for moving
local movestatus = false
Kohls = workspace.Terrain:WaitForChild("_Game")
Admin = Kohls:WaitForChild("Admin")
Pads = Admin:WaitForChild("Pads"):GetChildren()
-- These are all of the music ids I've saved
-- YOU SHOULD DO song instead of gmusic FOR BETTER ONES THESE ARE ONLY ONES I GOT FROM VIDEOS AND THEY SUCK
-- Thanks to Dizzy for this idea of writing my musiclist
-- It being gmusic1 instead of gmusic 1 is intentional!
local musicplay
local musictable = {
["1"] = {id = "9048375035", name = "All Dropping 8 Bit Beats"},
["2"] = {id = "1839029458", name = "Exotico Speedo"},
["3"] = {id = "35930009", name = "Monster Mash"},
["4"] = {id = "11808880515", name = "naomi_d - Demons"},
["5"] = {id = "1841647093", name = "Life in an Elevator"},
["6"] = {id = "1837070127", name = "Prima Bossa"},
["7"] = {id = "2042581436", name = "annoying citizen"},
["8"] = {id = "5216738441", name = "big obama the real g"},
["9"] = {id = "9038620433", name = "Out Of My Head"},
["10"] = {id = "8147012902", name = "gigachad loop"},
["11"] = {id = "9124780123", name = "Miss the rage Loop (Sparo Loop)"},
["12"] = {id = "142376088", name = "Raining Tacos"},
["13"] = {id = "1846368080", name = "Stadium Rave (A)"},
["14"] = {id = "1840511219", name = "Funky Fanfare"},
["15"] = {id = "1839404854", name = "Rock In"},
["16"] = {id = "1838097718", name = "Royal Dedication"},
["17"] = {id = "9038845849", name = "Synths Infusion A"},
["18"] = {id = "1843622301", name = "Mumbai Moon"},
["19"] = {id = "14145620056", name = "Phonk Vol. 2 - The Final Phonk"},
["20"] = {id = "13530437708", name = "0to8,1xmxxd - in ohio"},
["21"] = {id = "14145627857", name = "Catch My Drift"},
["22"] = {id = "14145624031", name = "Phonk Vol. 1 - Step Up Or Step Back"},
["23"] = {id = "13530438299", name = "0to8,1xmxxd - stop posting about baller"},
["24"] = {id = "1838028467", name = "VIP Me"},
["25"] = {id = "1848354536", name = "James Clarke - Relaxed Scene"},
["26"] = {id = "45819151", name = "sad depressing music 4am"},
["27"] = {id = "5410084188", name = "WRLD - Hang Up"},
["28"] = {id = "7612400047", name = "SEGAAA"},
["29"] = {id = "16190783444", name = "Dubidubidu (Techno Remix)"},
["30"] = {id = "16190782786", name = "Lil Kuudere X sukoyomi - Alone"},
["31"] = {id = "15689455422", name = "kirkiimad - i love (slow+reverb version)"},
["32"] = {id = "1841668624", name = "Have a Lazy Day a"},
["33"] = {id = "1848350335", name = "Desert Sands"},
["34"] = {id = "1837853076", name = "SEE YOU IN HELL!"},
["35"] = {id = "5410085763", name = "TOKYO MACHINE - PLAY!"},
["36"] = {id = "1838635121", name = "Sad End"},
["37"] = {id = "1839817591", name = "Animation Opening"},
["38"] = {id = "1837879082", name = "Paradise Falls"},
["39"] = {id = "1837392641", name = "Cannibal Collection"},
["40"] = {id = "16662831858", name = "WahRA - Idk Remix"},
["41"] = {id = "7764369437", name = "BEEP"},
["42"] = {id = "1845458027", name = "Smooth Nylons"},
["43"] = {id = "9047105533", name = "No Smoking"},
["44"] = {id = "1846808350", name = "Get Up And Boogie"},
["45"] = {id = "14366981962", name = "Diss na Hagi Łagi"},
["46"] = {id = "11265157079", name = "Advance Slayer"},
["47"] = {id = "11265140685", name = "Untitled"},
["48"] = {id = "11265166921", name = "Pierniki"},
["49"] = {id = "11265137944", name = "Slayers Hatred"},
["50"] = {id = "11265148479", name = "Amogus"},
["51"] = {id = "11265145737", name = "Blaze You"},
["52"] = {id = "11265173310", name = "Biszkopty"},
["53"] = {id = "11265164947", name = "Chipsy"},
["54"] = {id = "11496561844", name = "Fresh New Age"},
["55"] = {id = "14884822656", name = "CyPhrix - StartUpSequence.cprx"},
["56"] = {id = "14884819670", name = "CyPhrix - Wobble"},
["57"] = {id = "14884823796", name = "XRAY"},
["58"] = {id = "14884823178", name = "Three Dimensions"},
["59"] = {id = "14884817162", name = "Angel Hour"},
["60"] = {id = "14884823527", name = "Outcome"},
["61"] = {id = "14366982317", name = "SAKU - GTA"},
["62"] = {id = "15689442195", name = "CEO"},
["63"] = {id = "15689441772", name = "HELLFIRE"},
["64"] = {id = "15689451512", name = "Nothing Bad Is Going to Happen"},
["65"] = {id = "15689446882", name = "EXISTANCE"},
["66"] = {id = "16190782511", name = "uzipack"},
["67"] = {id = "9043887091", name = "Lo-fi Chill A"},
["68"] = {id = "1837768517", name = "Bossa Me (a)"},
["69"] = {id = "9039445224", name = "8 Bitty Kitty - Underscore"},
["70"] = {id = "9046863579", name = "City Lights - Roblox"},
["71"] = {id = "15689457918", name = "nMisaki - Dream Girl (sped up)"},
["72"] = {id = "1845742414", name = "Appetizer"},
["73"] = {id = "7029024726", name = "Throttle - Bloom"},
["74"] = {id = "1840612595", name = "A New Renaissance"},
["75"] = {id = "1836054144", name = "Upbeat Dude"},
["76"] = {id = "1837275138", name = "Never Enough"},
["77"] = {id = "1839917800", name = "Pop Till We Drop b"},
["78"] = {id = "1840221593", name = "Fit For Life (A)"},
["79"] = {id = "9041863801", name = "Dynamic Style B"},
["80"] = {id = "1836711447", name = "Just Like Me"},
["81"] = {id = "1845070869", name = "Eye Open"},
["82"] = {id = "1847863129", name = "Tech Synth A"},
["83"] = {id = "1845073388", name = "Need For Speed"},
["84"] = {id = "1845092143", name = "Super Nova"},
["85"] = {id = "1840006904", name = "Tricky (a)"},
["86"] = {id = "2665943889", name = "get jebaited"},
["87"] = {id = "18841891575", name = "d3r, m1v, asteria - no escape"},
["88"] = {id = "17422208483", name = "osquinn x luvbackpack - Drama"},
["89"] = {id = "5616761718", name = "henry stickman"},
["90"] = {id = "15689448519", name = "Din1c - can you"},
["91"] = {id = "1847588120", name = "Epic Steps A"},
["92"] = {id = "1841277657", name = "All I Want Is You (a)"},
["93"] = {id = "14145627144", name = "Phonk Vol. 1 - Antifreeze"},
["94"] = {id = "16190784875", name = "Din1c X QWERRXR - Infinite"},
["95"] = {id = "15689453529", name = "Din1c - INVASION"},
["96"] = {id = "16831108393", name = "Blessed Mane - Death Is No More"},
["97"] = {id = "16190760005", name = "Din1c X dxstrxcted! X QWERRXR - Cowbell God"},
["98"] = {id = "13530438929", name = "1xmxxd - in ohio - spedup"},
["99"] = {id = "13629050392", name = "alajsonn - Kitty"},
["100"] = {id = "5410086218", name = "Noisestorm - Crab Rave"},
["101"] = {id = "14366981664", name = "SAKU - GTA (Nightcore)"}, --,
["102"] = {id = "15689445424", name = "Din1c - Dionic 2"},
["103"] = {id = "118526865506181", name = "Thoughts"},
["104"] = {id = "88207840016030", name = "Clear Sky"},
["105"] = {id = "93447794929597", name = "Sweetness"},
["106"] = {id = "84617304309283", name = "A Limitless Future"},
["107"] = {id = "79314929106323", name = "HOTAKFUNK"},
["108"] = {id = "125632594705040", name = "HOTAKFUNK (Super Slowed)"},
["109"] = {id = "86716268313709", name = "DEKUD"},
["110"] = {id = "124760595693133", name = "DEKUD (Slowed)"},
["111"] = {id = "118431878657160", name = "Calamity Fortune but it's dani feat. LeaF"},
["112"] = {id = "101037027238004", name = "Silly Shuffle (Fatal Funerals OST)"},
["113"] = {id = "84280769809030", name = "DOWN TO THE FIVE (Feat. RevengeSpirits)"},
["114"] = {id = "131632419873488", name = "Unwavering Hope"},
["115"] = {id = "87863734163876", name = "WahRA - KKJIJO"},
["116"] = {id = "16190782181", name = "HR - EEYUH!"},
["117"] = {id = "9046863253", name = "Poolside"},
["118"] = {id = "1837871067", name = "When U Coming Back - NoVocals"},
["119"] = {id = "1846458016", name = "No More"}, -- yep... that song
["120"] = {id = "1843468325", name = "Shake it"},
["121"] = {id = "1846575559", name = "Diamonds"},
["122"] = {id = "1845756489", name = "Town Talk"},
["123"] = {id = "1840684529", name = "Cool Vibes"},
["124"] = {id = "9069333086", name = "SCP 096 Panic New"}, -- 1/130 roulette rgmusic
["125"] = {id = "1839857296", name = "Convenience Store"},
["126"] = {id = "9046862941", name = "Sunset Chill (Bed Version)"},
["127"] = {id = "1840684208", name = "Playground Of The Stars (A)"},
["128"] = {id = "1845341094", name = "Chill Jazz"},
["129"] = {id = "1840434670", name = "Funky (A)"},
["130"] = {id = "1842241530", name = "Lazy Sunday"},
["131"] = {id = "7023635858", name = "Bensley - Vex"},
["132"] = {id = "1841476350", name = "Happy-Go-Lively"},
["133"] = {id = "9046865270", name = "Glowing Light (Bed Version)"},
["134"] = {id = "75793628822368", name = "Mirage Portal"},
["135"] = {id = "9046476113", name = "Cyber Space"},
["136"] = {id = "1843404009", name = "Happy Song"},
["137"] = {id = "1845149698", name = "Seek & Destroy"},
}
-- Saved gears
local gearlist = {
["boombox"] = {gearid = "212641536"},
["vg"] = {gearid = "94794847"},
["vampire"] = {gearid = "94794847"},
["vanquisher"] = {gearid = "94794847"},
["vampirevanquisher"] = {gearid = "94794847"},
["vampire vanquisher"] = {gearid = "94794847"},
["osas"] = {gearid = "92628079"},
["gb"] = {gearid = "82357101"},
["gearban"] = {gearid = "82357101"},
["portable justice"] = {gearid = "82357101"},
["portablejustice"] = {gearid = "82357101"},
["bhbomb"] = {gearid = "28277486"},
["tictac"] = {gearid = "16924676"},
["pgun"] = {gearid = "34870758"},
["camfixer"] = {gearid = "79736563"},
["ar"] = {gearid = "4842207161"},
["cambreak"] = {gearid = "4842207161"},
["painter"] = {gearid = "18474459"},
["paint bucket"] = {gearid = "18474459"},
["telemon"] = {gearid = "93136746"},
["trapmine"] = {gearid = "11999247"},
["timegears"] = {gearid = "77443461"},
["hyperlaser"] = {gearid = "130113146"},
["mine"] = {gearid = "33383241"},
["dsd"] = {gearid = "71037101"},
["cresendo"] = {gearid = "94794774"},
["rainbow"] = {gearid = "159229806"},
["ivory"] = {gearid = "108158379"},
["azure"] = {gearid = "69499437"},
["crimson"] = {gearid = "99119240"},
["chartreuse"] = {gearid = "80661504"},
["amethyst"] = {gearid = "93136802"},
["noir"] = {gearid = "120307951"},
["grimgold"] = {gearid = "73829193"},
["sledgehammer"] = {gearid = "45177979"},
["carpet"] = {gearid = "225921000"},
["dualdarkheart"] = {gearid = "108149175"},
["darkheart"] = {gearid = "16895215"},
["dualillumina"] = {gearid = "101191388"},
["illumina"] = {gearid = "16641274"},
["tommy"] = {gearid = "116693764"},
["M1"] = {gearid = "130113146"},
["luger"] = {gearid = "95354288"},
["mauser"] = {gearid = "97885552"},
["revolver"] = {gearid = "97885508"},
["whip"] = {gearid = "255800146"},
["jetpack"] = {gearid = "31314966"},
["katana"] = {gearid = "11453385"},
["chaos"] = {gearid = "93136746"},
["lock"] = {gearid = "82357101"},
["ld"] = {gearid = "77443461"},
["light"] = {gearid = "77443461"},
["dark"] = {gearid = "77443491"},
["batsword"] = {gearid = "17680660"},
["admslayer"] = {
gearid = {
"268586231",
"1103011681"
}
},
["kp"] = {
gearid = {
"583030187",
"68539623"
}
},
["icebreaker"] = {
gearid = {
"87361662",
"66896601"
}
},
["periastrons"] = {
gearid = {
"108158379",
"80661504",
"233520257",
"73829193",
"69499437",
"139577901",
"2544549379",
"120307951",
"99119240",
"93136802",
"80597060",
"159229806",
"77443461"
}
},
["ivories"] = {
gearid = {
"108158379",
"80661504",
"233520257",
"73829193",
"69499437",
"139577901",
"2544549379",
"120307951",
"99119240",
"93136802",
"80597060",
"159229806",
"77443461"
}
},
["melees"] = {