text.BackgroundTransparency = 1 not working

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()

whoops I’m supposed to use text.TextTransparency

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.