-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.lua
More file actions
40 lines (32 loc) · 2.04 KB
/
main.lua
File metadata and controls
40 lines (32 loc) · 2.04 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
--[[
___ __ ________ ___ ___ ___ ________ ___ ___ _________ _______
|\ \|\ \ |\ __ \|\ \|\ \|\ \ |\ ____\|\ \ |\ \|\___ ___\\ ___ \
\ \ \/ /|\ \ \|\ \ \ \\\ \ \ \ \ \ \___|\ \ \ \ \ \|___ \ \_\ \ __/|
\ \ ___ \ \ \\\ \ \ __ \ \ \ \ \_____ \ \ \ \ \ \ \ \ \ \ \ \_|/__
\ \ \\ \ \ \ \\\ \ \ \ \ \ \ \____\|____|\ \ \ \____\ \ \ \ \ \ \ \ \_|\ \
\ \__\\ \__\ \_______\ \__\ \__\ \_______\____\_\ \ \_______\ \__\ \ \__\ \ \_______\
\|__| \|__|\|_______|\|__|\|__|\|_______|\_________\|_______|\|__| \|__| \|_______|
A script for agspureiam's game Kohls Admin House. Supported for KAH NBC, BC and NP (sort of).
Created by ScriptingProgrammer (Roblox) / ts2021 (Discord) / S-PScripts (GitHub)
View the source here: https://kohlslite.pages.dev/source.lua
]]
-- Prefix
getgenv().theprefix = "."
-- Autorun commands
getgenv().autoruncmds = {".cmdbar", ".tnok", ".antikill me"} --".antimsg me"
-- Run these commands when the user joins
getgenv().run_on_sight = {
["ScriptingProgrammer"] = {".lua print('da owner joined so coolz')"}
}
-- KL Starter GUI
getgenv().kohlsgui = false -- Simple GUI with instructions telling you how to use the script.
-- Autocrasher related (put KL in autoexecute)
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().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).
getgenv().customcmds = {"h \n\n\n\n\n crashed by roblox \n\n\n\n\n"} -- Custom messages that run before the crash
-- Loadstring
loadstring(game:HttpGet("https://kohlslite.pages.dev/source.lua"))()
-- More settings can be found in the script's source itself.