Answers for "roblox bots"

1

roblox bots

game.players.PlayerAdded:Connect(function(player))
	if player.AccountAge <= 30 then
		player:Kick("\n".."Account is too young to play, account must be > 30 days old.")
	end
	//updated
	if string.find(player.Name, "catbot") then
		player:Kick("Your username is possibily a dangerous bot account")
	end
end
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language