public void Play() { UserEmail = EmailText.text; //C: \Users\hasee\AppData\LocalLow\DefaultCompany\mitobunny0707\Unity path = Application.persistentDataPath + "/Unity/" + UserEmail + ".json"; if (!Validation.Validation.LocalEmailExistCheck(UserEmail)) { if (!Validation.Validation.ServerEmailExistCheck(UserEmail)) { AlertText.text = "The enter email has not been registered. Please register first."; AlertWindow.SetActive(true); return; } else { MysqlConnector mysqlConnector = new MysqlConnector(); string query = "select * from runoob.player_info where email = \'" + UserEmail + "\';"; List<string> result = mysqlConnector.Query(query)[0]; savePlayerInfoWithListString(result); } } LoadingControl.GameStart(); }