crazyzee
|
  |
| Joined: 24 Aug 2010 |
| Total Posts: 275 |
|
|
| 23 Mar 2012 08:48 PM |
ok i dont know how to weld can someone teach me ?
|
|
|
| Report Abuse |
|
|
|
| 23 Mar 2012 08:50 PM |
What a vague question. Here's a vague, random answer:
local p1, p2 = Workspace.Part1, Workspace.Part2
local w = Instance.new("Weld") w.Parent = game.JointsService w.Part0 = p1 w.Part1 = p2 w.C1 = w.Part1.CFrame:toObjectSpace(w.Part0.CFrame)
|
|
|
| Report Abuse |
|
|
UFAIL2
|
  |
| Joined: 14 Aug 2010 |
| Total Posts: 6905 |
|
|
| 23 Mar 2012 08:51 PM |
http://wiki.roblox.com/index.php/Welds
~When life gives you lemons, you say 'I ain't even mad'.~ |
|
|
| Report Abuse |
|
|
crazyzee
|
  |
| Joined: 24 Aug 2010 |
| Total Posts: 275 |
|
|
| 23 Mar 2012 08:54 PM |
| im srry i meant i want to weld something on my hand and i would need a handle for it. |
|
|
| Report Abuse |
|
|
crazyzee
|
  |
| Joined: 24 Aug 2010 |
| Total Posts: 275 |
|
|
| 23 Mar 2012 08:59 PM |
| b uuuuuuuuuuuuummmmmmmmmmmpppppppp |
|
|
| Report Abuse |
|
|
crazyzee
|
  |
| Joined: 24 Aug 2010 |
| Total Posts: 275 |
|
|
| 23 Mar 2012 09:02 PM |
hello? can someone help me?
|
|
|
| Report Abuse |
|
|
|
| 23 Mar 2012 09:05 PM |
Here...put it inside the tool...
script.Parent.Equpped:connect(function(mouse) -- How useless this argument is. for i,v in pairs(script.Parent:GetChildren()) if v:IsA("BasePart") and v ~= script.Parent.Handle then local p1, p2 = script.Parent.Handle, v local w = Instance.new("Weld") w.Parent = game.JointsService w.Part0 = p1 w.Part1 = p2 w.C1 = w.Part1.CFrame:toObjectSpace(w.Part0.CFrame) end end end) |
|
|
| Report Abuse |
|
|