void Wait_Command(string[] waitTime)
    {
        float time = float.Parse(waitTime[0]);

        screen.EnableDialogBox(false);
        screen.choices.SetActive(false);
        OldVSNController.GetInstance().WaitSeconds(time);
    }