of     1   

Raphael7
#37177566Thursday, November 18, 2010 2:23 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 if targ.Parent:findFirstChild("Torso")~=nil and game.Players:playerFromCharacter(targ.Parent)~=nil then local s = script.Damager s:clone().Parent = OT.Parent:findFirstChild("Torso") wait(1) s:remove() end end end end end -- Also I dont know about the ends bin.Selected:connect(onButton1Down) end
myrco919
#37177582Thursday, November 18, 2010 2:25 PM GMT

[ Content Deleted ]
ProgAdLer
#37177610Thursday, November 18, 2010 2:28 PM GMT

Use 'and's instead of more 'if's... If you do that you can get rid of three 'end's. Also, the last en is useless...
Raphael7
#37177613Thursday, November 18, 2010 2:28 PM GMT

This is a different problem... You fail..

    of     1