So im a noob so sorry if this is a noob question....
but im making GUI buttons and the positioning is based off the top left corner....so if i wanted my button to be on the bottom left corner i have to set it like 800 pixels from the top and it doesnt work out (if that makes sense)......so my question is...how do i make it where the 0,0 is in the bottom left or bottom right corner? so i can set the positioning to be 150 pixels from the bottom. hope this is said well :p
You can not change the proportions of offset, it is done in pixels, but if you used scale, you can do 0.4 or 0.5 and it be the middle of the screen no matter what size the monitor, so in your case you could do {0.95,0},{0.95, 0} and it would be in the top left corner. This wasn't what you wanted, but if it helped please accept!
UDim2.new(0,0,0,0)
is the top left. If you want something 150 pixels up from the bottom left, use UDim2.new(0,0,1,-150)