of     1   

Raphael7
#37150845Wednesday, November 17, 2010 11:15 PM GMT

bin = script.Parent targ = nil OT = nil function onButton1Down(mouse) local targ=mouse.Target if targ then if targ.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(targ.Parent) then local Torso = targ.Parent.Torso local OT=script.Parent if OT then if OT.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(OT.Parent) then OT:MoveTo(targ.Parent.Position = targ.Parent.Position + Vector3.new(0, 10, 0) local s = script.Damager s:clone().Parent = OT.Parent:findFirstChild("Torso") wait(1) s:remove() end end end end end end bin:connect(onButton1Down)
kbk
#37150998Wednesday, November 17, 2010 11:18 PM GMT

Saying what's the problem and saying what's the OutPut would highly increase the chances of being helped
NecroBumpist
#37151002Wednesday, November 17, 2010 11:18 PM GMT

[ Content Deleted ]
Spectrumw
#37151119Wednesday, November 17, 2010 11:19 PM GMT

You forgot a ), but after that, i doubt it would work anyway, please check that line, it does not make sense at all.
Raphael7
#37151186Wednesday, November 17, 2010 11:21 PM GMT

Players.Player.Backpack.Tool.Script:15: ')' expected near '='
kbk
#37151371Wednesday, November 17, 2010 11:23 PM GMT

Raphael, I can't believe you didn't understand that OutPut. You missed a ')'
Spectrumw
#37151433Wednesday, November 17, 2010 11:24 PM GMT

@Kbk Yeah, he missed logic too.
Raphael7
#37151448Wednesday, November 17, 2010 11:24 PM GMT

I forgot that one so yah.
Raphael7
#37151522Wednesday, November 17, 2010 11:26 PM GMT

Still doesnt work. bin = script.Parent targ = nil OT = nil function onButton1Down(mouse) local targ=mouse.Target if targ then if targ.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(targ.Parent) then local Torso = targ.Parent.Torso local OT=script.Parent if OT then if OT.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(OT.Parent) then OT:MoveTo(targ.Parent.Position = targ.Parent.Position + Vector3.new(0, 10, 0)) local s = script.Damager s:clone().Parent = OT.Parent:findFirstChild("Torso") wait(1) s:remove() end end end end end end bin:connect(onButton1Down)
Spectrumw
#37151629Wednesday, November 17, 2010 11:28 PM GMT

'targ.Parent.Position = targ.Parent.Position + Vector3.new(0, 10, 0)' That does not make sense at all -.-
CardCaddy
#37151998Wednesday, November 17, 2010 11:35 PM GMT

Something tells me this is what you mean. OT:MoveTo(targ.Position + Vector3.new(0, 10, 0))
pauljkl
#37152019Wednesday, November 17, 2010 11:36 PM GMT

OT:MoveTo(targ.Parent.Position + Vector3.new(0, 10, 0))
Raphael7
#37153010Wednesday, November 17, 2010 11:50 PM GMT

Now connect is broken.. It says connect is not a valid member of Hopperbin
CardCaddy
#37153392Wednesday, November 17, 2010 11:56 PM GMT

Thats probably because what I am assuming "bin" is (script.Parent) cannot be "Connected". Try: bin.Equipped:connect
bloob827
#37153523Wednesday, November 17, 2010 11:58 PM GMT

cARD, EQUIPPED IS ONLY FOR TOOLS
Raphael7
#37153749Thursday, November 18, 2010 12:02 AM GMT

Blood what's the proper use?
bloob827
#37154746Thursday, November 18, 2010 12:16 AM GMT

bin = script.Parent targ = nil OT = nil function onButton1Down(mouse) local targ=mouse.Target if targ then if targ.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(targ.Parent) then local Torso = targ.Parent.Torso local OT=script.Parent if OT then if OT.Parent:findFirstChild("Torso") and game.Players:playerFromCharacter(OT.Parent) then OT:MoveTo(Vector3.new(0, 10, 0)) local s = script.Damager s:clone().Parent = OT.Parent:findFirstChild("Torso") wait(1) s:remove() end end end end end bin.Selected:connect(onButton1Down)
CardCaddy
#37172922Thursday, November 18, 2010 5:29 AM GMT

Is there some clue that I am missing saying that it isn't a tool?
xTecHx
#37173607Thursday, November 18, 2010 6:16 AM GMT

@kbk Its not "OutPut". That looks dumb and idiotic. Its "output".
Raphael7
#37177553Thursday, November 18, 2010 2:21 PM GMT

It's a hopperbin.

    of     1