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

How do i make a force hold item so when people have it they are forced to hold it? [closed]

Asked by
kedny23 -14
8 years ago

I want to know how to make a script so that when a player has an item called potaoe they are forced to hold it!

0
Put it in their character It wont show the tool but It will force them to use it. Subbix -5 — 8y

Closed as Not Constructive by Perci1

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 8 years ago

The best way to do this is to alter the Equipped property of a tool.

Tool = script.Parent
Tool.UnEquipped:connect(function () -- They unequip it
    Tool.Equipped = true -- Forced to pick it up again
end)
0
is it a local or a normal script kedny23 -14 — 8y
0
i still dont understand is "Tool" supposed to be an item name also wher do i put this script? kedny23 -14 — 8y
Ad