I found some similar topics, but I couldn’t resolve them with the suggestions I saw.
I am creating a list of fonts, within Server Script:
for Id, Fonte in pairs(Enum.Font:GetEnumItems()) do
local TextLabelFonte = FrameFontes.TextLabel:Clone()
TextLabelFonte.Parent = FrameFontes
TextLabelFonte.Name = Fonte.Name
TextLabelFonte.Text = Fonte.Name
TextLabelFonte.Font = Fonte.Name
end
FrameFontes.TextLabel:Destroy()
Sorry, the excessive vertical space I mentioned was due to my original TextLabel was set with a Size.Scale.Y.
Changing from Scale to Offset, solved the problem:
Looking at the same problem, I found this thread that I created myself over 1 year ago.
However, I found that the solution would be simpler for my problem:
I would just activate ScrollingFrame | Roblox Creator Documentation.