Skip to content

Commit

Permalink
Update KohlsLite.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Sep 25, 2024
1 parent 2ce66b4 commit c1bf959
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3151,15 +3151,15 @@ return
Chat("unpunish me")
end

if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'meshkick' then -- mesh kick haha
if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'meshkick' then -- mesh kick haha
local dasplayer = string.sub(msg:lower(), #prefix + 10)
PLAYERCHECK(dasplayer)

if player ~= nil and not table.find(nokick, player) then
kickin = cplr
kickinplr = player
Remind("Kicking "..player)
meshkick(kickin, kickinplr)
hatkick(kickin, kickinplr)
elseif table.find(nokick, player) then
return Remind("Sorry, this player cannot be kicked!")
else
Expand All @@ -3168,15 +3168,15 @@ return

end

if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'techkick' then -- tech kick
local dasplayer = string.sub(msg:lower(), #prefix + 10)
if string.sub(msg:lower(), 1, #prefix + 7) == prefix..'hatkick' then -- hat kick haha
local dasplayer = string.sub(msg:lower(), #prefix + 9)
PLAYERCHECK(dasplayer)

if player ~= nil and not table.find(nokick, player) then
kickin = cplr
kickinplr = player
Remind("Kicking "..player)
techkick(kickin, kickinplr)
hatkick(kickin, kickinplr)
elseif table.find(nokick, player) then
return Remind("Sorry, this player cannot be kicked!")
else
Expand All @@ -3185,15 +3185,15 @@ return

end

if string.sub(msg:lower(), 1, #prefix + 7) == prefix..'hatkick' then -- hat kick haha
local dasplayer = string.sub(msg:lower(), #prefix + 9)
if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'techkick' then -- tech kick
local dasplayer = string.sub(msg:lower(), #prefix + 10)
PLAYERCHECK(dasplayer)

if player ~= nil and not table.find(nokick, player) then
kickin = cplr
kickinplr = player
Remind("Kicking "..player)
meshkick(kickin, kickinplr)
techkick(kickin, kickinplr)
elseif table.find(nokick, player) then
return Remind("Sorry, this player cannot be kicked!")
else
Expand Down Expand Up @@ -9920,8 +9920,8 @@ function dkick(dk, dkicked)
end
end

-- mesh kick
function meshkick(kickin, kickinplr) -- v, V.Name
-- hat (mesh) kick
function hatkick(kickin, kickinplr) -- v, V.Name
Chat("respawn "..kickinplr)
task.wait(.25)
Chat("tp me "..kickinplr)
Expand All @@ -9931,7 +9931,7 @@ function meshkick(kickin, kickinplr) -- v, V.Name
for i = 1, 10 do
if game.Players:FindFirstChild(kickinplr) then
for i = 1, 100 do
Chat("hat me 1810126502")
Chat("hat me 18137588505")
task.wait(.5)
Chat("clone me")
end
Expand All @@ -9941,7 +9941,7 @@ function meshkick(kickin, kickinplr) -- v, V.Name
end

function techkick(kickin, kickinplr) -- Tech's hatkick
spammer = true
hatspammingz = true
Chat("respawn "..kickinplr)
Chat("blind "..kickinplr.." discord")
Chat("invis "..kickinplr.." discord")
Expand All @@ -9951,18 +9951,20 @@ function techkick(kickin, kickinplr) -- Tech's hatkick
Chat("size "..kickinplr.." 9.9")
Chat("size "..kickinplr.." 9.9")
chatt("spin "..kickinplr.." discord")
wait(0.15)
task.wait(0.15)
Chat("setgrav "..kickinplr.." -251.2")

task.delay(3.65, function()
spammer = false
hatspammingz = false
end)

for i = 1, 103 do
chatt("hat "..kickinplr.." 18137588505")
end
while spammer do task.wait()

while hatspammingz do task.wait()
chatt("hat "..kickinplr.." 18137588505")
end

end


Expand Down

0 comments on commit c1bf959

Please sign in to comment.