Is there a module or something that converts offsets to scale for GUIs automatically?
Asked by
7 years ago Edited 7 years ago
I've heard of UIScale but its description on the Wiki is very vague. It doesn't say it will convert offsets to scale.
Would anyone know of a module/library that does something like this? How would you convert position to scale?
1 | child.Position = UDim 2. new(child.AbsolutePosition.X/child.Parent.AbsolutePosition.X, 0 , |
2 | child.AbsolutePosition.Y/child.Parent.AbsolutePosition.Y, 0 ) |
Is pretty wrong for what I'm trying to do. If I do it that way, it will not scale position properly for some reason.
Any module(s), etc?