Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you stop a tool from falling on the floor after u equip it?

Asked by
KenzaXI 166
9 years ago

Thanks for all your help, I finally figured it out. There is an instance called "weld" just needed to change my parts name to Handle and add wedge to the Tool. thanks for all you help

0
Make sure your tool has a Handle, and all the parts in the tool are welded to the handle TurboFusion 1821 — 9y

3 answers

Log in to vote
0
Answered by 9 years ago

What your problem is, is that your Parts are not welded to each other. also make sure that the part in the model that you want your player to hold on to is named "Handle". If you don't know how to weld I suggest putting this script into the tool: http://www.roblox.com/Auto-weld-Script-item?id=65731310 Hope this helps! If your still having problems just comment!

Ad
Log in to vote
0
Answered by 9 years ago

I would recommend the part known as the "Handle" this creates a weld to the right arm.

Log in to vote
0
Answered by
KenzaXI 166
9 years ago

I don't get what you mean.

0
local Tool = script.Parent function onEquip() local Object = game.GetService("InsertService"):LoadAsset(246060663) game.GetService("InsertService"):Insert(Object) Object.Parent = game.Workspace Object.Name = "DamageBall" end Tool.Equipped:connect(onEquip) KenzaXI 166 — 9y

Answer this question