I am trying my hardest to make text in a TextLabel bold. Everything I do seems to put me in the wrong direction, and the engine documentation is not helpful.
At first I tried label.FontFace.Weight = Enum.FontWeight.Bold
which does nothing.
Then I tried label.FontFace.Bold = true
which also does nothing
Then I tried label.Font.Weight = Enum.FontWeight.Bold
which returns Weight cannot be assigned to
.
Am I doing something wrong? Please help as I am certian I cannot find proper documentation that points me to the right property to edit. Thanks.
Before you answer it, I can’t use RichText in my use case.