So I’ll ask again, is there any way to make a chat command that sends you to another servers? I heard that gui.OpenURL doesn’t work anymore, so I’m not sure.
hook.Add( “PlayerSay”, “plyChat”, function( ply, text, public )
text = string.lower(text)
if (text == “!ttt”) then
ply:SendLua(“LocalPlayer():ConCommand(‘connect “…serverip…”’)”)
end
end)
[/lua]