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 Oct 7, 2024
1 parent 0341df0 commit 3a40128
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8223,24 +8223,22 @@ connections[#connections + 1] =
end
end)
end)
else
print("nbc patch bug")
end

-- Anti mesh
connections[#connections + 1] =
game:GetService("RunService").RenderStepped:Connect(function()
task.wait()
if antis.antimesh then
for i,v in pairs(workspace:GetDescendants()) do
if v:IsA("Accessory") then
if tostring(v.AccessoryType) == "Enum.AccessoryType.Unknown" then -- he knocks
v:Destroy()
end
end
end
for i, v in pairs(game.Workspace:GetDescendants()) do
if v:IsA("Accessory") and (v.Name == "Accessory (Pointy)" or v.Name == "Accessory (happy)" or v.Name == "Accessory (SUN)" or v.Name == "Accessory (MeshPart)" or v.Name == "") then
v:Destroy()
end
end
end
end)
else
print("nbc patch bug")
end

-- ANTIS FOR EVERYONE
connections[#connections + 1] =
Expand Down

0 comments on commit 3a40128

Please sign in to comment.