this works in one tool, but when I put it in a second one, then it breaks, and neither script work.
script.Parent.Equipped:connect(function(mouse)
print'equipped'
mouse.Button1Down:connect(function()
for i, v in pairs(script.Parent:GetChildren()) do
v.Anchored = true
v.Transparency = .8
v.Parent = Workspace
wait()
script.Parent.Parent = Workspace
end
end)
end)
|