king157
|
  |
| Joined: 06 Jan 2009 |
| Total Posts: 19196 |
|
|
| 29 Jun 2014 02:30 AM |
it wont let me drop the cups
local Tool = script.Parent
function Weld(X, Y) local W = Instance.new("Weld") W.Part0 = X W.Part1 = Y local C = CFrame.new(X.Position) local C0 = X.CFrame:inverse() * C local C1 = Y.CFrame:inverse() * C W.C0 = C0 W.C1 = C1 W.Parent = X end
function WeldAll(A) if A:IsA("Part") then Weld(Tool.Handle, A) A.Anchored = false A.CanCollide = false else for _, X in pairs(A:GetChildren()) do WeldAll(X) end end end
Tool.Equipped:connect(function() WeldAll(Tool) end)
Tool.Unequipped:connect(function() WeldAll(Tool) end)
WeldAll(Tool) |
|
|
| Report Abuse |
|
|
king157
|
  |
| Joined: 06 Jan 2009 |
| Total Posts: 19196 |
|
|
| 29 Jun 2014 02:39 AM |
Tool.Unequipped:connect(function() WeldAll(Tool)
is it that bit?
do i jsut delete it? |
|
|
| Report Abuse |
|
|
Protune
|
  |
| Joined: 17 Sep 2010 |
| Total Posts: 147 |
|
|
| 29 Jun 2014 05:15 AM |
| You go to the tool - properties window - Look at the dropable function... |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2014 05:24 AM |
| Click on the tool, go to properties then click droppable. All they have to do then is press backspace. |
|
|
| Report Abuse |
|
|
king157
|
  |
| Joined: 06 Jan 2009 |
| Total Posts: 19196 |
|
| |
|