I have a custom admin script, how to add multiple commands for one function?

I tried using a table and that doesn’t work
How would I add multiple words as commands to activate the same function?
I’m lost on this one.

local keyword = {"My Safe Place" , "MYSAFEPLACE" , "MY SAFE PLACE" , "my safe place" , "mysafeplace"} -- Keyword Here
local bridgefolder = game.Workspace["Moving Bridges"]

game.Players.PlayerAdded:Connect(function(player)
	player.Chatted:Connect(function(msg)
		if msg == keyword then
			bridgefolder.B1.PressTween.Disabled = false
			bridgefolder.B2.PressTween.Disabled = false
			script:Destroy()
		end
	end)
end)

use table.find()

local keyword = {"My Safe Place" , "MYSAFEPLACE" , "MY SAFE PLACE" , "my safe place" , "mysafeplace"} -- Keyword Here
local bridgefolder = game.Workspace["Moving Bridges"]

game.Players.PlayerAdded:Connect(function(player)
	player.Chatted:Connect(function(msg)
		if table.find(keyword, msg) then
			bridgefolder.B1.PressTween.Disabled = false
			bridgefolder.B2.PressTween.Disabled = false
			script:Destroy()
		end
	end)
end)