Having trouble with fading text

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)

You have another end in your script, remove 1 of them

Also if you’re wanting to make the changes on the Local Side, change it to a LocalScript instead

Do not use TextTransparency, rather, use just Transparency instead. That would lower the transparency of the Image as ImageLabels do not have Text in them, thus TextTransparency won’t work.