Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local blacklisted = {
- {
- UserId = 1,
- Reason = "You Got BlackPencil"
- }
- }
- game.Players.PlayerAdded:Connect(function(player)
- for i,_ in pairs(blacklisted) do
- if table.find(blacklisted[i]["UserId"], player.UserId) then
- player:Kick("You Are BlackPencil From This Script For The Reason: "..blacklisted[i["Reason"]])
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment