I have Frame (Size: {1,0} {1,0}) within a ScreenGui, and I put a TextLabel exactly in the center of the screen (marked by a dashed green line). When my friend plays it on his IPad, the text label is off-centered. My question is: how can GUIs preserve scaling across all platforms, such as through iPad or iPhone or PC?
2 Likes
You need to utilize AnchorPoints to center the object perfectly across all devices. Simply set it to 0.5, 0.5 and set the position to 0.5, 0, 0.5, 0. This way, the positioning will occur based on the center (hence 0.5, 0.5) of the object.
2 Likes