I’m basically trying to get a TextLabel to Fade In. Here’s what I’m using;
for count = 1, 0, 0.1 do -- 1 Stands for the transparency it begins with, 0 stands for the transparency it ends with.
TextLabel.TextTransparency = count
TextLabel.TextStrokeTransparency = count
wait(0.01)
end
(This does not work for some reason)
When I change it to for count = 0, 1, 0.1 do it ends up working but instead of Fading In, it Fades out since it starts with Transparency 0 and ends with Transparency 1.