I made a ScreenGui on a different computer. This computer has a bigger screen than the one that I am using. The ScreenGui's Frames were perfectly placed on the other computer. I published it on Roblox. Then opened it on my main computer(smaller screen), and everything is squished together. Why is this? How can I keep the perfect look on all sorts of screen sizes?
You used the WORLD SPACE:
{0, 200, 0, 50}
But you have to use the LOCAL SPACE to size is with the computer's screen size:
{0.5, 0, 0.1, 0} -- if it's {1, 0, 1, 0}, it recovers the entire screen, not like the world space.
Also, in the studio, the view screen is smaller, cuz it's overplaced by the EXPLORER, the PROPERTIES and other stuffs. So I suggest you to size it a bit smaller than when it appears on the studio.
Hope this helped!