How can I make a UI asset not move depending on the screen size etc

Basically I have a UI piece entered and I want it to stay centred no matter what and I want a few others to stay in their place. Is there and easy script to just make pieces move so they are always entered on the UI no matter the screen size?

Set their AnchorPoint to Vector2.new(.5, .5) and Position to UDim2.new(0, 0, 0, 0).

@Eliteplaiz In the UI, you must set every children’ offset to 0 so they will always maintain their size and position, however when you do this, you must fix their size using scale. Btw, these are in the properties.