Tool Picking up

How would I make a tool pickable by more than one person? Have a tool not disappear when picked up

1 Like

You can create a fake tool and when touched, insert the real tool into the player’s backpack.

What you’ll have to do is have a click detector inserted inside the tool, then when it’s clicked, it’ll be cloned and parented to the player’s backpack.

How would I do that?? It would work tho

1 Like

Take a look at this: ClickDetector | Documentation - Roblox Creator Hub

Hello! Your issue is simple.

You need two things

  1. A fake part on the ground
  2. A serverscript that adds it to the players inventory

The serverscript with detect when the fake part is touched, then clone the tool from replicated storage into the inventory of whoever touched it. That way, it provides the same effect with the target functionality.

1 Like