public static void SetFontSize(int size)
 {
     if (size < 10)
     {
         DevConsole.LogError("Font size would be too small");
     }
     else if (size > 20)
     {
         DevConsole.LogError("Font size would be too big");
     }
     else
     {
         DevConsole.TextObject().fontSize = size;
         DevConsole.Log("Change successful :D", "green");
     }
 }
 public static void SetText(string text)
 {
     DevConsole.TextObject().text = "\n" + text;
 }