Help with installed fonts

Hi, im trying to set the font of my textlabel to a custom font, but when i try this script it doesnt change the font to the font I installed, im going to assume that you need a special way to set installed fonts in a script. Any help appreciated!

script.Parent.Frame.TextLabel.Font = field.Frame.TextLabel.Font
1 Like
  • Check if it’s in Enum.Font
  • Try using the Font functions, e.g. Font.fromName
1 Like

Thanks for the help, I looked into it a little more in the properties section and I realised custom fonts take the property “FontFace” instead of “Font”

script.Parent.Frame.TextLabel.FontFace = field.Frame.TextLabel.FontFace --".FontFace" instead of ".Font"
1 Like

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