From fb6071a7e52ee61b8342c14ef468c3f8cb739265 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 10 Jun 2017 16:20:21 -0400 Subject: [PATCH] fixed ip for the client to localhost --- client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.lua b/client/main.lua index 8811910..b4d395e 100644 --- a/client/main.lua +++ b/client/main.lua @@ -11,7 +11,7 @@ require("net") -- Loads the networking library require("net.chatting") require("net.settings") -- loads the networking settings module require("net.identity") -- loads the networking identity module -client=net:newTCPClient("69.113.201.7",12345) +client=net:newTCPClient("localhost",12345) if type(client)=="boolean" then error("Please run the server file first!") end client.OnUserLoggedIn:connect(function(self,data) anim.Visible=false