Hello, I have been trying multiple ways to do this recently, but I just can not figure out how to get my script to work. I have a text sign that flashes and does stuff like that, it is an open sign, but it is only on. What I want is so that I can press a button, and it will turn off, and also be able to click another button and have it turn on.
This is my current script: while true do
script.Parent.Text = "OPEN"
wait(0.4)
script.Parent.Text = ""
wait(0.4)
script.Parent.Text = "OPEN"
wait(0.4)
script.Parent.Text = ""
wait(0.4)
script.Parent.Text = "OPEN"
wait(0.4)
script.Parent.Text = ""
wait(0.4)
script.Parent.Text = "OPEN"
wait(2.5)
script.Parent.Text = "O"
wait(0.5)
script.Parent.Text = "OP"
wait(0.4)
script.Parent.Text = "OPE"
wait(0.4)
script.Parent.Text = "OPEN"
wait(0.4)
end
If anyone could help that would be great!
|