I set the backgruondtransparency to 1 in the properties. It doesn’t work. And when I set it with a script, it also doens’t work.
local gui = moneyPart.BillboardGui
gui.Enabled = true
local text = moneyPart.BillboardGui.TextLabel
text.Text = "+"..moneyAmount
text.BackgroundTransparency = 1
text.Transparency = 0
repeat
text.Transparency = text.Transparency + 0.1
task.wait(0.1)
until text.Transparency >= 1
moneyPart:Destroy()