About 416,000 results
Open links in new tab
  1. What is 'UDim2' and how do I use it? - DevForum | Roblox

    May 17, 2021 · UDim2 is basically a Position/Size value for GUIObjects. Let’s say you want this GUIObject to be the whole screen, and it’s 0,100,0,100 (or something else) size. Do this: …

  2. What is a Udim/Udim2 Value? - DevForum | Roblox

    Mar 14, 2022 · UDim2 is a value that contains X and Y - scale and offset, like this: UDim2.new (XScale, XOffset, YScale, YOffset) It’s used in UI sizing and position UDim is the same but without the offset …

  3. UDim2? AnchorPoint? Making sense of positioning UI on Roblox

    Jun 1, 2024 · You’re probably familiar with a UDim2. There are two components to a UDim2: Offset An amount in pixels. Scale Represents a certain proportion of the size of the element’s parent. For …

  4. How to save Udim2 - Help and Feedback / Scripting Support - Roblox

    Dec 30, 2024 · Roblox cannot save your UDim2 because it contains functions etc. The only relevant details are its offset and scale values on the X and Y axis. You can save them as a CSV (comma …

  5. How do I multiply udim2 values? - Help and Feedback ... - Roblox

    Nov 27, 2021 · Exactly what the title says, I am confused on how to do this, I am trying to multiply my offset size by 4 but nothing seem to work. Thanks in advance, have a nice day.

  6. How do I find where the UDim2 position would be? - Roblox

    May 8, 2022 · I am trying to script a GUI that comes down from the top of the screen in the middle just a tad, and I know how to tween and script, I just don’t know how to find the UDim2 values to plug into …

  7. What is UDim2/UDim? And what is the difference - Roblox

    Mar 7, 2021 · UDim2 | Documentation - Roblox Creator Hub Represents a two-dimensional value where each dimension is composed of a relative scale and an absolute offset.

  8. Vector2 vs UDim2? - Scripting Support - Developer Forum | Roblox

    Feb 7, 2021 · What’s the difference between Vector2 vs UDim2? Not the similarities, but you can include that if you want.

  9. How to get y or x offset or scale? - Scripting Support - Roblox

    Aug 18, 2020 · Both of these return an UDim2 value so in order to change them you have to either use UDim2.new(XScale,XOffset,YScale,YOffset) constructor or you can directly edit the scale and offset …

  10. Converting AbsolutePosition -> UDim2 - Scripting Support - Roblox

    Feb 20, 2025 · So im trying to get my tutorial frame (“center”) to hover over a certain button (“frame”) center.Position = UDim2.new(0, frame.AbsolutePosition.X, 0, frame.AbsolutePosition.Y) This is the …