Hi there, what I am trying to create is a textlabel appearing on-screen with background transparency set to 1, and have the actual text transparency increase by +0.01 so then the label fades away. But for some reason, I keep getting a error saying, “TextTransparency not found in class Imagelabel.”
This is the script:
local Note = script.Parent
script.Parent.Active = false
script.Parent.TextTransparency = 1
for i = 1,0,-0.01 do
script.Parent.TextTransparency = i
wait(0.01)
end
end)
