Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 11, 2024
1 parent 3250b90 commit e7e63b6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1533,22 +1533,24 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
local dasplayer = args[2]
PLAYERCHECK(dasplayer)
if player ~= nil then
if table.find(blacklist, player) then
if table.find(blacklist, player) or table.find(newplrslocked, player) then
if blwl_an then
if watermark_kl then
Chat("h \n\n\n [KohlsLite]: "..player.." has been unblacklisted! \n\n\n")
else
Chat("h \n\n\n "..player.." has been unblacklisted! \n\n\n")
end
end
table.remove(blacklist, table.find(blacklist, player))
if table.find(blacklist, player) then
table.remove(blacklist, table.find(blacklist, player))
end
if table.find(newplrslocked, player) then
table.remove(newplrslocked, table.find(newplrslocked, player))
table.remove(newplrslocked, table.find(newplrslocked, player))
end
Remind("Unblacklisted "..player)
Chat('unblind '..player)
Chat('unpunish '..player)
else
else
Remind(player.." was never blacklisted!")
end

Expand Down

0 comments on commit e7e63b6

Please sign in to comment.