how can I make all the devices look the same? I tried using Offset instead of scale but for some reason that just makes the buttons disappear off of every device. thanks in advance!
The problem is definitely the use of Scale. UDim2.new(0.3, 0, 0.25, 0) looks like it was tailored to the aspect ratio of the top screenshot; when the screen becomes shorter, the button also becomes shorter, because its height is still 25% of the height of the screen.
You still should use Scale, but constrain the button’s aspect ratio.
Set the button’s size to UDim2.new(1, 0, 0.25, 0) and its SizeConstraint to RelativeXX, this should make the button’s height 25% of the screen’s height and its width the same as its height.
I intentionally set the X scale to a ridiculous 1 to make it obvious if I got it wrong. If I did, just set SizeConstraint to whatever works.
as far as I am aware there is no such thing as PositionConstraint, should I just let the button be in different positions, or can you fix it being in a annoying location?
edit: just tried relative XX. putting 1 as X glitches it out, but for some reason it works without it being set to 1? not gonna question it, just happy the button looks nice on all platforms.