Gamer_blox

GamerBlox BlackPencil (Client)

Sep 1st, 2023 (edited)
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | Source Code | 0 0
  1. local blacklisted = {
  2.    {
  3.       UserId  = 1,
  4.       Reason = "You Got BlackPencil"
  5.    }
  6. }
  7. game.Players.PlayerAdded:Connect(function(player)
  8.    for i,_ in pairs(blacklisted) do
  9.       if table.find(blacklisted[i]["UserId"], player.UserId) then
  10.          player:Kick("You Are BlackPencil From This Script For The Reason: "..blacklisted[i["Reason"]])
  11.       end
  12.    end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment