of     1   

sillyboy668
#183385336Thursday, February 11, 2016 7:29 PM GMT

h.Text = "1" wait(1) h.Text = "2" wait(1) h.Text = "3" wait(1) h.Text = "4" wait(1) h.Text = "5" wait(1)
128Gigabytes
#183385574Thursday, February 11, 2016 7:37 PM GMT

for x = 1, 5, 1 do h.Text = "Time left; " .. tostring(x) wait(1) end If you want it to count backwards for x = 5, 1, -1 do
sillyboy668
#183385713Thursday, February 11, 2016 7:40 PM GMT

Thanks that helped me but I encountered a problem with this code. local h = Instance.new("Hint") local start = 0 h.Parent = game.Workspace function onTouched(hit) while true do i = 1,start do h.Text = start + i wait(1) end script.Parent.touched:connect(onTouched) It won't work, any reason why?
sillyboy668
#183386086Thursday, February 11, 2016 7:49 PM GMT

bump
128Gigabytes
#183386257Thursday, February 11, 2016 7:53 PM GMT

You are trying to do for x = 1, 0 do That means start at 1, end at 0, go up by 1 1 will never reach 0 if its going up Why are you doing start + i? Just do .Text = tostring(i)
sillyboy668
#183400877Friday, February 12, 2016 12:06 AM GMT

Like this? local h = Instance.new("Hint") h.Parent = game.Workspace local start = 0 function onTouched(hit) i = 1,start do h.Text = tostring(i) wait(1) end script.Parent.touched:connect(onTouched) deoesn't work btw...
128Gigabytes
#183402818Friday, February 12, 2016 12:38 AM GMT

You are still trying to start at 1 and end at 0 That won't wirk
sillyboy668
#183426046Friday, February 12, 2016 11:35 AM GMT

local h = Instance.new("Hint") local start = 10 h.Parent = game.Workspace function onTouched(hit) while true do i = 1,start do h.Text = tostring(i) wait(1) end script.Parent.touched:connect(onTouched) Soooooo like this???
AbstractMadness
#183426475Friday, February 12, 2016 12:00 PM GMT

are you dumb for i = 1,10 do h.Text = i wait(1) end #code R+ | local RAP = "431,190"; local robux = "R$32,827"
sillyboy668
#183431246Friday, February 12, 2016 3:03 PM GMT

How would I get it to pause on the digit when touched again?
AbstractMadness
#183505139Saturday, February 13, 2016 3:04 PM GMT

while part.Touched:wait() do local i = 1 h.Text = "Time Left: "..i wait(1) i = i + 1 end #code R+ | local RAP = "432,223"; local robux = "R$25,000"
sillyboy668
#183609279Sunday, February 14, 2016 8:02 PM GMT

This works but it says Time Took when you touch it the first time, I tried tweaking it but it made it worse. I need to make it count and then pause and say Time Took when you touch it the second time. local h = Instance.new("Hint") local start = 0 h.Parent = game.Workspace function onTouched(hit) for i = 1,999 do h.Text = i wait(1) while hit.Touched:wait() do local i = 1 h.Text = "Time it Took: "..i wait(1) i = i + 1 end end end script.Parent.touched:connect(onTouched)
sillyboy668
#183694362Monday, February 15, 2016 8:20 PM GMT

bump
sillyboy668
#183706509Monday, February 15, 2016 10:45 PM GMT

please someone? this is the last part i need for the code...
cheesecake123456
#183706569Monday, February 15, 2016 10:46 PM GMT

script.Parent.Touched, you forgot the capital T

    of     1