Hello, i was wondering if there is a tool where my screen would display a grid with coordinates, this way when i make GUIs i can place them with more clarity rather than having to trial-and-error my positions.
There’s no build-in functionality I am aware of, but it can ver accomplished very easily by yourself by just drawing lines every few pixels along the left and top screen edges, with a length or height equal to the current screen.width and screen.heigth, and possibly adding a small GUI.Drawlabel with the x and y coordinates.
Barring that, you may also want to look into GUILayout which lets you define screen portions to use as horizontal, vertical or even cell-like spaces for your GUI elements, without the need to define exact pixel coordinates for each element.