Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

TextLabel changing color script dont work ? SOLVED, THANKS RHEINES

Asked by 5 years ago
Edited 5 years ago

So my script is supposed to make textlabel (gui) change color every 0.5 minutes but it won't work, i put this:

while true do
    script.Parent.TextColor3 = Color3.new(math.random(), math.random(), math.random())
    wait(.5)
end

but nothing happens, it des not change to another color

Adress of the Script :

StarterGui ScreenGui Text1 Color Changing Script Text2 Color Changing Script Text3 Color Changing Script

It's a Script not a local script

0
Is this a script or a local script? User#5423 17 — 5y
0
It should work if it's in a local script, and if you want to make it change color every half a minute you need to wait(30). Rheines 661 — 5y
0
This should be a local script. As the gui is on the client side. User#5423 17 — 5y

Answer this question