How do you check a textlabel's transparency in a local script?
Asked by
5 years ago Edited 5 years ago
It doesnt seem to update the value at all when I check it in testing but it will appear and never fade away it just goes to delete itself as if transparency 1 = transparency 0. i even tried using a NumberValue to represent the transparency and it didn't update either...
01 | local text = script.Parent |
06 | text.TextTransparency = text.TextTransparency - . 05 |
09 | until text.TextTransparency < = 0 |
17 | text.TextTransparency = text.TextTransparency + . 05 |
20 | until text.TextTransparency < = 1 |