of     1   

Cjslick
#111060625Sunday, August 25, 2013 7:40 PM GMT

timer = script.Parent.CapTime start = 60 capturing = script.Parent.Cap function onTouch(part) if part.Name == "BlueZone" then capturing.Value = true else capturing.Value = false end end if capturing.Value == true then repeat timer.Value = timer.Value - 1 wait(1) until timer.Value == 1 end if capturing.Value == false then timer.Value = start end if timer.Value == 1 then script.Parent.Name = "AReady" end script.Parent.Touched:connect(onTouch) I'm novice at writing my own scripts from scratch.
Cjslick
#111089912Sunday, August 25, 2013 11:55 PM GMT

Bump
Cjslick
#111097955Monday, August 26, 2013 1:02 AM GMT

Please help!
Cjslick
#111135290Monday, August 26, 2013 11:49 AM GMT

Anyone find a solution?
adam1717
#111136832Monday, August 26, 2013 12:21 PM GMT

well what is the script for?
ToboboT
#111137584Monday, August 26, 2013 12:42 PM GMT

timer = script.Parent.CapTime start = 60 capturing = script.Parent.Cap function onTouch(part) if part.Name == "BlueZone" then -- Assuming you want a human to touch it there leg or what ever won't be called this capturing.Value = true else capturing.Value = false end -- You don't need two for one if statement unless you are ending the function there if capturing.Value == true then repeat timer.Value = timer.Value - 1 wait(1) until timer.Value == 1 end if capturing.Value == false then timer.Value = start end if timer.Value == 1 then script.Parent.Name = "AReady" end script.Parent.Touched:connect(onTouch) Other wise I think this is good :/
Cjslick
#111138556Monday, August 26, 2013 1:05 PM GMT

It's not working...
Cjslick
#111148292Monday, August 26, 2013 3:54 PM GMT

It's a timer system. I need it to stop if it's not touching "BlueZone", And change the Part's name. From there a script within "BlueZone" will accept it.
Cjslick
#111174207Monday, August 26, 2013 9:30 PM GMT

Can anyone help?

    of     1