So I was making a word processing software inside roblox (For simulation purposes, I am not trying to compete with large word processing softwares and it wasn’t intended for profiting off it). Anyway, I was trying to change the font of a textbox when a button is clicked.
So:
- What do you want to achieve? A button that changes font of a textbox.
- What is the issue? I can’t seem to make it work.
- What solutions have you tried so far? Checked online but I can’t find one.
script I am trying to use:
script.Parent.MouseButton1Click:Connect(function()
game.StarterGui.ScreenGui.Frame.TextBox.Text.Font = Enum.Font.AmaticSC
end)
Feel free to ask questions if you don’t seem to understand mine.