For a script I'm writing, I need to define x and y, and they need to be the x and y values of the position of a button called "CURRENT". is there a way to do this? I tried
1 | local x = CURRENT.Position.UDim 2. new.x |
2 | local y = CURRENT.Position.UDim 2. new.y |
but obviously UDim2 isn't a part of Position. Let me know if I need to clarify anything. Thanks!
Like this:
1 | xOff = CURRENT.Position.X.Offset --will get the offset for x |
2 | xScale = CURRENT.Position.X.Scale --will get the scale value for x |
3 | yOff = CURRENT.Position.Y.Offset --will get the offset for y |
4 | yScale = CURRENT.Position.Y.Scale --will get the scale for y |
5 | print (CURRENT.Position) --will print 4 nums(i think) |
6 | print (CURRENT.Position.Y) --should print 2, both the y scale and offsets |
7 | print (CURRENT.Position.Y.Offset) --will just print the y offset |
for further information check the wiki page for UDim2