of     1   

smellypencil
#44636442Saturday, March 26, 2011 8:23 PM GMT

how would i liek for instance take a brick and weld it to theyre chest to make it like armour how do u write that in a script???? im thinking of making something idk what but i dont know how to write the weld thing can anyone help?
Xsitsu
#44636993Saturday, March 26, 2011 8:31 PM GMT

w = Instance.new("Weld") w.Parent = game.Workspace.smellypencil w.Part0 = game.Workspace.smellypencil.Torso w.Part2 = game.Workspace.Brick w.C0 = CFrame.new( Vector3.new( 0 , 0 , 0 ) ) I think something like this. Possibly some typos or errors in there.

    of     1