Get FontFace items

how would i get a table of the new fonts? like how you would get the old ones using Enum.Font:GetEnumItems()

1 Like

In terms of scripting, as far as I am aware, the new Fonts can only be accessed through the Font data type: Font | Documentation - Roblox Creator Hub

Font faces have to be specified by their asset ID, or whatever you may want to call it. I am not sure why you would need to list all of them in a table, and I don’t think there is an easy way of doing so. However, you may be aware that the new fonts can be found in the Creator Hub: https://create.roblox.com/store/fonts

Example:

local textlabel = workspace.Part.SurfaceGui.TextLabel -- random path for a TextLabel, use this example for your own purposes
local font = Font.new("rbxassetid://12187607287") -- asset for the Prompt font
textlabel.FontFace = font
1 Like

thanks! guess ill just get their names and ids and put them in a table myself

i need them for a dropdown button to select a font

1 Like

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