BillboardGUI text value not changing?

  1. What do you want to achieve? Keep it simple and clear!
    The text value to change every 1 second, it does not work.

  2. What is the issue? Include screenshots / videos if possible!
    The script seems to NOT run, no errors are shown either.

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Couldn’t find anything that could fix or related to my problem!
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!


local txtVal = script.Parent.Text
local text = script.Parent

while true do
	text.Text = "Click me"
	task.wait(1)
	text.Text = "Click me."
	task.wait(1)
	text.Text = "Click me.."
	task.wait(1)
	text.Text = "Click me..."
	task.wait(1)
end

I fixed it; the problem was that the code was in a LocalScript inside the WORKSPACE which don’t mix well :slight_smile:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.