hey so i was making my tycoon with my friend and we wanted to change the text font on this button
but we did not know how to i have been looking for many days how to do it and some how i have not found any thing here is a image of the button i want to change the font above it
The text is made via the Humanoid. If you change the name of the model it will automatically change the โoverheadโ name on the part! I do not believe you can change the font of this by the way! I suggest adding a billboardGui and doing a textlabel via that.
I really have no clue why you would use an Humanoid Object to create text.
Use a billboardGUI with a TextLabel.
Then just put a script in the TextLabel which does something like;
script.Parent.Parent.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
script.Parent.Text = hit.Parent.."'s Tycoon!"
end
end)
local gui = Instance.new("BillboardGui", workspace.TycoonButton)
local label = Instance.new("TextLabel", gui)
label.Font = --Font of your choice
--If you want to change the price, just do this, instead of using a value:
label.Text = "task".." - ".."[cost]"