
How to change textlabel text using script - Roblox
Apr 30, 2021 · How to change textlabel text using script Help and Feedback Scripting Support Rubertz (Robert) April 30, 2021, 1:00pm
How can i change a textbutton/textlabel's text in game? - Roblox
Jun 26, 2021 · The way you would change text of a text label is to do something like this. local TEXT_INFO = "Hello World!" TextLabel.Text = TEXT_INFO -- Should be a string surrounded …
Changing a TextLabel via script - Scripting Support - Roblox
Feb 18, 2021 · I know this is a rookie mistake but until today I thought Gui text was changed via the StarterGui on the explorer. How do I modify a TextLabel’s text property (ScreenGui) to …
[SOLVED] How do I color parts of text? - Roblox
Dec 21, 2021 · Hi, I am trying to make a sort of text editor in roblox. But to make things look better, I want to know how I can change different parts (words and numbers) into different …
I'm not sure how to change text for UI with a script - Roblox
Jan 17, 2023 · Instead create a variable that is a reference to the object, and change it’s text accordingly. Also, are you sure you’re using the most efficient way to do your script? I see …
How would I replace ContentText? - Scripting Support - Roblox
Jan 11, 2023 · ContentText is simply a copy of the Text property, it’s read only to my knowledge. From the wiki: “A copy of TextLabel.Text that contains exactly what is being rendered by the …
How would I make gui text change from a script in the ... - Roblox
Jun 22, 2020 · I am working on a game and I want a majority of the functionality to come from a script in a chair I am doing, but how would I change text in a GUI in screenGui from the script …
How do I detect that text in a TextLabel has changed? - Roblox
Oct 31, 2020 · Hi, I’m making an airport departure board. There is one column that has scrolling text. My script resizes the TextLabel until the text fits. Now I want to resize it again after I …
How can I make a certain part of text a specific color? - Roblox
Jan 9, 2024 · How can I make a certain part of text a specific color? Help and Feedback Scripting Support newyearsforyo (newyearsforyo) January 9, 2024, 5:11pm
How do I make a text Bold in a script? - Roblox
Feb 13, 2023 · I’ve been trying to make a script which displays text, but I can’t seem to make the text Bold For clarification: I do Not want RichText, I know there’s FontFace.Bold and …