-
What do you want to achieve? Keep it simple and clear!
The text value to change every 1 second, it does not work. -
What is the issue? Include screenshots / videos if possible!
The script seems to NOT run, no errors are shown either. -
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