View difference between Paste ID: McXSaw97 and B09PW3xv
SHOW: | | - or go back to the newest paste.
1-
local banned = {"qeeeqx"}
1+
local banned = {"doryna2281337"}
2
local prefix = "[fuck you]"
3
local message = "kys"
4
5
game.Players.PlayerAdded:Connect(function(player)
6
	for _, v in pairs(banned) do
7
		if player.Name == v then
8
			player:kick(prefix..message)
9
		end
10
	end
11
end)