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()
When running the script, many items are not being shown at the end:
How to fix this?