of     1   

StingyShaun
#141213756Tuesday, July 22, 2014 11:38 PM GMT

Like h=Instance.new("Hint",workspace) for i = 10, 1, -1, Go --No idea how to do it h=i
StingyShaun
#141213804Tuesday, July 22, 2014 11:38 PM GMT

Forgot to put the " " around go
cntkillme
#141213858Tuesday, July 22, 2014 11:39 PM GMT

What are you trying to accomplish?
MrJoeyJoeJoey
#141213949Tuesday, July 22, 2014 11:40 PM GMT

What? h=Instance.new("Hint",workspace) for i = 10, 1, -1, "Go" do h=i end
StingyShaun
#141214207Tuesday, July 22, 2014 11:43 PM GMT

Nvm i think i got it h=Instance.new("Hint",workspace) for i = 1,10,-1 do h.Text =i end wait(1) h.Text="Go" I think my brain had a fart Will this work?
cntkillme
#141214227Tuesday, July 22, 2014 11:44 PM GMT

Almost, put the wait(1) in the loop

    of     1