Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

Commit

Permalink
Update KohlsLite.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 8, 2024
1 parent 7cef79d commit 90f1b52
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6460,6 +6460,16 @@ return
Remind("Turned this anti off for you!")
end

if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'autoungb' then
autoungb = true
Remind("You will automatically get ungearbanned if gearbanned.")
end

if string.sub(msg:lower(), 1, #prefix + 10) == prefix..'unautoungb' then
autoungb = false
Remind("You will no longer automatically get ungearbanned if gearbanned.")
end

if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'antivoid' then
antis.antivoid = true
Remind("Turned this anti on for you!")
Expand Down Expand Up @@ -12052,6 +12062,16 @@ vplr.LocalPlayer.Idled:Connect(function()
end
end)

autoungb = true
game:GetService("CoreGui").RobloxGui.Backpack:GetPropertyChangedSignal("Visible"):Connect(function()
if not game:GetService("CoreGui").RobloxGui.Backpack.Visible then
if autoungb == true then
game:GetService("CoreGui").RobloxGui.Backpack.Visible = true
end
end
end)
-- game:GetService("CoreGui").RobloxGui.Backpack.Visible = true

-- CLICK
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.Button1Down:Connect(function()
Expand Down

0 comments on commit 90f1b52

Please sign in to comment.