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

How would i make a Textlabel change name every 2 Minutes?

Asked by 10 years ago

Well what im saying is this it will say this but it will also change color but it dosent work [CONSOLE]: Round is Beggining -- though this would be in green. then this [CONSOLE]: Round is Ending -- it would be in Red Can i get help?

0
Change name, or change text? Tempestatem 884 — 10y
0
Change color and text can you help? digitalzer3 123 — 10y
0
Yes, once my answer cooldown is over Tempestatem 884 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago

Put this in the textlabel

while true do 
wait()
script.Parent.Text="Round is Beginning"
script.Parent.BackgroundColor3=Color3.new(0,/255 208/255, 31/255)
wait(120)
script.Parent.Text="Round is Ending"
script.Parent.BackgroundColor3=Color3.new(255/255, 0/255, 0/255)
wait(120)
end
Ad

Answer this question