How use new Fonts?

Hello, I’m making my script which should create gui, with Jura font, and weight 700 (or bold)
But IDK how to script this, can someone tell me please?

Font = Font.new("rbxasset://fonts/families/Jura.json", Enum.FontWeight.Bold)
or
Font = Font.new("rbxasset://fonts/families/Jura.json", 700)
or
--IDK anything more...

Thats basically all you need to know
For example to change the font of a text:

local btn --> TextLabel or TextButton idk
btn.Text = "Hi"
btn.FontFace = Font.new("rbxasset://fonts/families/Jura.json", Enum.FontWeight.Bold)
5 Likes

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