I already tried to doing this on the GUI I want it to be at Left side at your screen and then centered but I can't get a perfect center, and mostly on a 1920x1080 screen it would be at Left side Centered so anyone knows how to fix? (Sorry if It's kinda bad I'm really new but need help)
I already tried using this in a Local Script:
local mainGUI = script.Parent mainGUI.Position = UDim2.new(0, 0, 0.5, 0)
The result if I try putting the GUI onto left side centered using Properties or the localscript (they are same and I tested in my laptop that have 1366x768 screen built in): https://imgur.com/a/XxLccPp
I do have a beast personal computer with 1920x1080 screen and tested it its centered fine
So basically it's on left of my screen but it won't be centered perfectly
Use anchorpoint:
local mainGUI = script.Parent mainGUI.Position = UDim2.new(0, 0, 0.5, 0) mainGUI.AnchorPoint = Vector2.new(0,.5)