Before I start, I would just like to say that I am a beginner when it comes to roblox studio, so I really need a simple explanation for the solution.
My problem is that I want to position a gui, but it just turns out different on all devices. I really need help on this, as I literally know nothing about guis. I want the gui to appear in the same position, on all devices.
I tried searching it up on google, checking the devforum, yet I don’t really understand the instructions, since I’m a beginner, as I mentioned before.
just click on the gui you want in explorer (eg frame, but i think if you click on a screengui it does it to its descendants aswell - but that might not work)
1: click on the gui you want to scale
2: click on the plugin
If you want the gui to be in the middle of what you parented it to make the Position .5,0,.5,0 and make the AnchorPoint .5,.5.
If the Position is 0,10,0,10 and the AnchorPoint is 0,0 then the gui will be 10 after the right edge and 10 below the top edge of the screen or whatever the gui is parented to.
A,B,A,B or .5,0,.5,0 A can be 0-1 and B can be almost anything. If A is .5 then here are some other ways of describing it .5/half/middle. A is known as the scale. B is known as the offset.
The 1st two #s are the X(horizontal) and the 2nd two #s are Y(vertical)
I hope this helps and also that I didn’t say anything incorrectly If there are any errors that you noticed please tell me, thanks!
Ohhh now I understood exactly what scale, offset and anchor point are used for, thank you very much! I finally found out how to position the guis correctly.