Help me! I want my gui look like good

Please Help me. How I can use UI Aspect ratio or UI padding or anything

Screenshot_28

What do you want to do with it exactly? Scale it, center it?

You could change some of the outline colors to be the same, Have black surround the text and the shapes instead of a combination of two colors.

Using UIPadding and UIAspectRatioConstraint is the easiest way to set the padding and aspect ratio of a Frame in Roblox.

local frame = script.Parent
frame.Padding = UIPadding.new(10)
frame.AspectRatioConstraint = UIAspectRatioConstraint.new(16, 9)

This will set the padding of the Frame to 10 on all sides and the aspect ratio to 16:9. You can adjust the values passed to the UIPadding and UIAspectRatioConstraint

Scale and center it I need that

1 Like

All you have to do is set these properties to center it:

AnchorPoint = 0.5, 0.5
Position = {0.5, 0}, {0.5, 0}

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.