Centering Textlabel/Imagelabel GUIs

I’m more of a beginner at GUIs, just a note.

I’m having some trouble Centering GUI’s in the exact middle of the screen. It’s position also appears to be in a slightly different location on the x-axis depending on the screen size you have.

Any tips on getting it centered?

5 Likes

Set AnchorPoint to (.5,.5) then set the UIElement’s position to UDim2.new(.5,0,.5,0)

9 Likes

Thank you!

no problem :wink: