private void Start() { pontuacao = FindObjectOfType <Pontuacao>(); if (pontuacao != null) { pontos = pontuacao.GetPontuacao(); tempoSobrevivencia = pontuacao.GetTempoSobrevivencia(); } textoPontuacao.text = pontos.ToString(); int minutos = (int)(tempoSobrevivencia / 60); int segundos = (int)(tempoSobrevivencia % 60); textoTempoSobrevivencia.text = $"Você sobreviveu por {minutos}min e {segundos}s"; id = ranking.AdicionarPontuacao("Nome", pontos, tempoSobrevivencia); }