You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? I want the color from my TextLabel to change to a different color after a few seconds.
What is the issue? I know how to make the “after a few seconds” part, just not the “color-changing” one.
What solutions have you tried so far? I tried looking for tutorials on YouTube and also in the DevForum, but all of them were either about something else or simply did not work.
I’m REALLY new to scripting (and I mean it) but I really don’t know why this doesn’t work.
This will be used in some sort of screen, the text starts off as black (to give it the impression that it’s not there) but after a few seconds it “turns on” (switches to red)
Feel free to ask any follow up questions, also if you actually want to hide the text there is another property called Visible that you can set to true or false.
I actually used that in the past for making a flickering light thingy, I thought it could only be used for parts though, I’ll keep that in mind, thanks!
TextColor3 is a Color3 value like someone said already, just after the equal sign use Color3.fromRGB(255,0,0) for a bright red but there will be a little color wheel for ya if you want to edit the color
It depends on the desired effect. If you want to hide the text and the GUI element itself making it completely invisible and preventing it from obstructing other GUI elements Visible is the way to go. If you want to only hide the text @AlexPalex178’s suggestion to modify TextTransparency is the way to go in that case.
Interesting, pretty sure this will solve my issue then!
I’ll test it out so yeah, thanks for the help everyone!
On a Side-note, I had no idea the forums were THIS active… Though I suppose that’s good lol.