Ability to change CoreGui text fonts

As a Roblox developer, it is currently impossible to change text font of Leaderstats and Backpack.
I want Roblox to add 2 new function to StarterGui SetCoreGuiFont and GetCoreGuiFont

For example

game.StarterGui:SetCoreGuiFont("PlayerList",Enum.Font.Cartoon)
game.StarterGui:SetCoreGuiFont("Backpack",Enum.Font.Cartoon)
game.StarterGui:SetCoreGuiFont("All",Enum.Font.Cartoon)
--And
game.StarterGui:GetCoreGuiFont("PlayerList")
game.StarterGui:GetCoreGuiFont("Backpack")

SetCoreGuiFont

The set function requires 2 arguments. The first argument should be the name of the CoreGuiType and second should be the Enum of the text font.

GetCoreGuiFont

The get function requires 1 argument and the argument should be name of CoreGuiType. The get function will return the font of the text Enum.

11 Likes

This topic was automatically closed after 1 minute. New replies are no longer allowed.