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
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
I don’t think that’s possible
But it will be great if it was
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.
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’
There’s not really a legit way other than using roblox images.
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.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.