How to have multiple UserId's for a chat tag?

I have a script but I am wanting to make it to where I can have a table and just have all the UserId’s in there. I am having trouble with this part of the script. Could anyone help me with this?

Script
--Table
local Developers = {
	899293901,
	201925144
}


	if table.find(Developers, Player.UserId) then
			{ 
			
			ChatColor = BrickColor.new("Neon orange").Color,
			NameColor = BrickColor.new("Neon orange").Color,
			Font = Enum.Font.SourceSansBold, 
			TextSize = 18, 
			Tags = { 
				{ 
					TagText = "Developer",
					TagColor = BrickColor.new("Neon orange").Color
				},
			}, 
		},
	end