Tycoon button text font cant change

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
image

and this is the properties of it image

thanks for reading and thanks you for ur help :slight_smile:

2 Likes

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.

2 Likes

Indeed what @uD0ge said.

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)
3 Likes
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]"
3 Likes

ok thanks ill try that out

(char 12312312)

yay it works thanks u guys all for ur help :slight_smile:

2 Likes