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 27, 2024
1 parent b63ec89 commit 653b554
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3861,6 +3861,16 @@ return
Remind("Disable this anti!")
end

if string.sub(msg:lower(), 1, #prefix + 9) == prefix..'antiplant' then
antiplant = true
Remind("Disable this anti!")
end

if string.sub(msg:lower(), 1, #prefix + 11) == prefix..'unantiplant' then
antiplant = false
Remind("Disable this anti!")
end

if string.sub(msg:lower(), 1, #prefix + 10) == prefix..'antibright' then
antibrightness = true
Remind("Enabled this anti!")
Expand Down Expand Up @@ -7647,6 +7657,14 @@ task.spawn(function()
Chat("clr")
end
end

if antiplant == true then
if workspace:FindFirstChild("BitePlant") then
workspace:FindFirstChild("BitePlant"):Destroy()
Chat("clr")
end
end

if antiambient == true then
if game.Lighting.Ambient ~= Color3.new(0,0,0) then
Chat("ambient 0 0 0")
Expand Down

0 comments on commit 653b554

Please sign in to comment.