of     1   

marfit
#183612133Sunday, February 14, 2016 8:50 PM GMT

script.Parent.A.MouseClick:connect(function() script.Parent.Parent.Conveyor.Script.Disabled = false script.Parent.BrickColor = BrickColor.new("Maroon") script.Parent.B.MaxActivationDistance = 10 script.Parent.A.MaxActivationDistance = 0 end) script.Parent.B.MouseClick:connect(function() script.Parent.A.MaxActivationDistance = 10 script.Parent.B.MaxActivationDistance = 0 script.Parent.Parent.Conveyor.Script.Disabled = true script.Parent.BrickColor = BrickColor.new("Earth Green") end) "B" is not clickable, so the conveyor is on forever.
marfit
#183616755Sunday, February 14, 2016 9:52 PM GMT

Why does no one help me?
jhend27513
#183617133Sunday, February 14, 2016 9:58 PM GMT

Keydown not mouseclick
marfit
#183617152Sunday, February 14, 2016 9:58 PM GMT

Keydown?
solbrillan
#183617189Sunday, February 14, 2016 9:59 PM GMT

No one helps you because you don't explain what A & B are, you also don't really explain what you want the code to do.
marfit
#183617279Sunday, February 14, 2016 10:00 PM GMT

A and B are click detectors. It is supposed to be a pushback. It works once, but it cannot be turned off, so once you click, it's on forever.
marfit
#183618562Sunday, February 14, 2016 10:18 PM GMT

BUMP
[rfa#hidefromsearch]
#183622366Sunday, February 14, 2016 11:13 PM GMT

[rfa#hidefromsearch]
JarodOfOrbiter
#183624764Sunday, February 14, 2016 11:46 PM GMT

I doubt you can have two working ClickDetectors in a single part. Use only one, as only one is needed anyways.

    of     1