I’m working on a popup that shows whenever you hover over certain UI elements. The only issue is it seems to be quite offset from where one might think it should be. The AnchorPoint of the hover popup is 0, 1 so that the bottom left corner should be right at where the absolute position would be.
Unless there’s something weird about AbsolutePosition that I don’t know, then I’m not sure what’s going on. Things to note: The UI element where the absolute position is being sourced is from a child of a ScrollingFrame, with a UIGridLayout and a UIAspectRatioConstraint applied to every item. The hover popup is just parented to the a ScreenGui. Possibly this is offsetting the AbsolutePosition?
Don’t use any AnchorPoint, just go with raw AbsolutePosition Data, remove AbsoluteSize.Y of the sand thing to get the correct position, also make sure the hoverMenu isn’t parented to anything away from 0, 0. Also afaik AbsolutePosition is top left, not bottom left.
Would it work for any other instances? It could possibly be the AspectRatioConstraint. GridLayouts, ScrollingFrames and most other UI modifiers haven’t ever produced such mistakes for me before.
Hey, sorry for the bump but did you find any solutions? I’m having the same problem right now: when I look up the property in-game it’s different to when I print it through script