I’m working on a project which lets you change up proximity prompts using attributes, but i’ve been struggling with changing fonts. The methods i’ve tried (that i can remember)
local fontValue = script:GetAttribute("font")
objectText.Font = fontValue
objectText.Font = script:GetAttribute("font")
objectText.Font = Enum.Font(script:GetAttribute("font"))
objectText.Font = Font(script:GetAttribute("font"))
And so much more. I’ve asked roblox’s AI and they failed. The error message ive got states:
I hope some fo you know what to do in this scenario.
Thanks.