of     1   

Flylux
#160159793Tuesday, April 14, 2015 5:44 PM GMT

+ Pathway is correct. Screen GUI > Script Frame > Text Label local function timer() local timrcnt = script.parent.Frame.TextLabel for i = 10, 1, -1 do timrcnt.Text = "t=".. i wait(1) end timrcnt.Text = "Over!" wait(2) end timer() The Label doesnt change to a count down from 10. Help? arnt I funny ¦ https://twitter.com/Flylux_RBLX I post a lot of banter 4 u
TooKawaiiForSenpai
#160159869Tuesday, April 14, 2015 5:47 PM GMT

Is it called 'TextLabel' or 'Text Label' you have a space in your path Any errors?
TooKawaiiForSenpai
#160159905Tuesday, April 14, 2015 5:48 PM GMT

Oh. Parent should be capitalized :)
Flylux
#160160048Tuesday, April 14, 2015 5:53 PM GMT

lol ty ty arnt I funny ¦ https://twitter.comlol/Flylux_RBLX I post a lot of banter 4 u
Goulstem
#160160972Tuesday, April 14, 2015 6:20 PM GMT

local timrcnt = script.parent.Frame.TextLabel should be local timrcnt = script.Parent.Frame.TextLabel

    of     1