void OnGUI(){
string splashes = {“Less than one sold!”, “lol”,“lmao”,“what?”};
System.Random random = new System.Random();
string quote = splashes[random(splashes)];
GUI.Label(new Rect(50,500,300,100),quote);
}
//I’m trying to create a GUI which will have random sentences in the splashes string. I have no idea how to do this, but can someone please find a way on how to do this? So for example, when I start up the game, it will state “Less than one sold!”, “lol”, “lmao”, or “what?”. If you have every played Minecraft where there are those hundreds of different yellow sentence splashes at an angle, then you should know I want.