of     1   

llaserx
#183465526Saturday, February 13, 2016 12:13 AM GMT

DeepBlueNoSpace
#183465768Saturday, February 13, 2016 12:16 AM GMT

Sure. What is it in particular with a throwable tool you're struggling with.
llaserx
#183465832Saturday, February 13, 2016 12:17 AM GMT

llaserx
#183474370Saturday, February 13, 2016 2:17 AM GMT

Icecreamtopblank
#183475792Saturday, February 13, 2016 2:39 AM GMT

I'd make a Tool first, then try cloning it to make the projectile and make the tool invisible, then make the project move to where you click. You can always look at already created Roblox tools for some guidance or learning. http://wiki.roblox.com/index.php?title=API:Class/Mouse/Button1Down
DaCrazyDev
#183476147Saturday, February 13, 2016 2:43 AM GMT

script.Parent.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() local tool = script.Parent for i,v in pairs(tool:GetChildren()) do if v:IsA("Part" or "Union") then local ToolClone = v:Clone() -- Use either position or velocity to make it fall -- if you want, you could use a ROBLOX animation to make it more realistically drop it -- with arms ToolClone.Anchored = true local Model = Instance.new("Model",game.Workspace) ToolClone.Parent = Model ToolClone.Touched:connect(function(h) if h.Parent:FindFirstChild("Humanoid") then game.Lighting --[[ or wherever the thing is--]].Tool:Clone().Parent = h.Parent end end) end end) end)
llaserx
#183476422Saturday, February 13, 2016 2:47 AM GMT

DaCrazyDev
#183476781Saturday, February 13, 2016 2:52 AM GMT

@xlaser23 (^ hopefully) That script, is the script ;-; it will make all the parts of the tool clone out into the workspace, and anyone that touches it will get the tool... just read the script. if you can't, you can't script, and need mental health right away.
llaserx
#183477122Saturday, February 13, 2016 2:57 AM GMT

i might have said it wrong what i meant by throwable tool was like throwing a kinfe that takes dmg...... http://www.roblox.com/xla-item?id=290739801http://www.roblox.com/aser-item?id=290739819http://www.roblox.com/23-item?id=290739831 R$2,881 Tx343 (づ ゚ ³ ゚)づ
llaserx
#183477199Saturday, February 13, 2016 2:58 AM GMT

and that block of madness u called code was unnesscessary http://www.roblox.com/xla-item?id=290739801http://www.roblox.com/aser-item?id=290739819http://www.roblox.com/23-item?id=290739831 R$2,881 Tx343 (づ ゚ ³ ゚)づ

    of     1