of     1   

tyler5819
#63562599Tuesday, February 28, 2012 2:41 AM GMT

What's wrong with this script?!!?!?!? v = script.Parent.Value function open() if v.Value == false then script.Parent.Parent.StartMenu.Visible = true v.Value = true wait(1) end if v.Value == true then script.Parent.Parent.StartMenu.Visible = false v.Value = false wait(1) end end element.MouseButton1Click:connect(open) So I am trying to make it where when you click it... it opens... when you click again it closes. All this does is make it open for 1 second. :P
TelamonLikenoname
#63562854Tuesday, February 28, 2012 2:45 AM GMT

Lol, Value twice? is that correct? if not then this should be correct: v = script.Parent function open() if v.Value == false then script.Parent.Parent.StartMenu.Visible = true v.Value = true wait(1) end if v.Value == true then script.Parent.Parent.StartMenu.Visible = false v.Value = false wait(1) end end element.MouseButton1Click:connect(open)
tyler5819
#63563215Tuesday, February 28, 2012 2:51 AM GMT

Your script doesn't even work. T_T
colddust1
#63563242Tuesday, February 28, 2012 2:52 AM GMT

O_O
AbstractAlex
#63563297Tuesday, February 28, 2012 2:53 AM GMT

Obviousely it didn't. They're clearly not a scripter. They don't even know that the value has a value property. And script.Parent.Value can never be true, because a script isn't an object value. Also, when foruming, tell us what part doesn't work, or give us the output error.
AbstractAlex
#63563343Tuesday, February 28, 2012 2:54 AM GMT

Based on your script, I'd say the error is that 'element' is never defined.
epicfail22
#63563874Tuesday, February 28, 2012 3:01 AM GMT

^What he said.
tyler5819
#63564420Tuesday, February 28, 2012 3:10 AM GMT

First off if your saying I can't script you wouldn't say "they're". I accidently posted the wrong script clearly. Element isn't defined. Also v = script.Parent.Value

    of     1