So i want to create a gui who have a good size for all device but when i create a gui the gui is not scaled for all device and when you rezize the windows for exemple the size of the gui doesnt chnage so u cant see anymore the gui ... So i dont know how to create a perfect gui so if you knwo ... Answer me thx :)
A Gui object's position and size properties are composed of four values, each being in an X
or Y
pair. The first value of each pair, called Scale
, will not compensate for differing resolutions. To adjust for other resolutions, use the second value in each pair, Offset
. Your new size or position may look something like this:
{0,0.1,0,0.1}
In a script, it would be like:
GuiObject.Position = UDim2.new(0,0.1,0,0.1)