Can i shorten the time on the GUI

I have a float time showing on my GUI but it's showing to like 5 decimal points which is really unnecessary. can i fix this so that i shows to no decimal points?

Very simple:

GUILayout.Label(myFloat.ToString("###.##"));

Notice that you can format your number as many decimals places as you want. Just add or remove the # symbol and that's it!

Convert it to an int, or use `.ToString("f0")`, or however many digits you want (f1, f2, etc.).