How to upload custom fonts to roblox?

Hey!

I don’t know how to make custom fonts on roblox and I want to know how to.
Is there any way to make custom fonts?

I am talking about upload font files to roblox and use them for my game.

Thank you

4 Likes

I don’t think that’s possible
But it will be great if it was

2 Likes

Oh ok. Well I was trying to make fonts on roblox look like this for example:

Oof :expressionless:

Well, it’s not possible officially, but you can still achieve it through a hacky method.

You could upload a sprite sheet of your desired font to roblox, then play with the ImageRectOffset and ImageRectSize values to display each character.

There’s a post which explains this a lot better.

5 Likes

I see, waht you can do it’s to upload a series of characters to roblox (in decals)

Now if you wanna know how to use the ‘font’ you maybe will need to create a Module script containing you’r characters ID’s

like this:

local module = {
    ["A"] = "rbxassetid://00000000" -- your ID here
    ["B"] = "rbxassetid://00000000" 
    -- and so on...
}
return module

then use a script to write character creating image labels
like this:

    local font = require(modulePathHere)
    
    function write()
         -- Function here
    end

and achieve that ‘font’

2 Likes

There’s not really a legit way other than using roblox images.

2 Likes

Eventually I will try this out. (Apologize for not responding for over 3 days)

Navigate to the fonts folder. Then, insert your font file. You can test the font out locally, but also take a screenshot of the font and correctly crop it.

2 Likes

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