You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? I want to reference the Font Face name so I can set it as the value for a SringValue. This would be without manually typing out the font name for each stat created.
-
What is the issue? I cant find a way to grab a labels font style and paste it as the stat value.
-
**What solutions have you tried so far?**Web search and variations to script.
local TitleStat = Instance.new("StringValue")
TitleStat.Name = script.Parent.Name
TitleStat.Value = script.Parent.FontFace -- Trying to get name for this line
TitleStat.Parent = Player:WaitForChild("PlayerAssets"):WaitForChild("Titles")
I’m unsure if this is possible, any help with solution work around would be appreciated!