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

May not be your average SH question-but how to make it so that tools cannot be picked up?

Asked by
unmiss 337 Moderation Voter
8 years ago

I have tools in a case for display.

Whenever I go into my game, they randomly get picked up by something. All the reload sounds whizz, and they disappear.

I don't want this to happen. Any properties I can use? I tried fiddling with ManualActivationOnly and Enable but it didn't work.

0
Did you try removing the scripts from them or making it just the part with the mesh inside? attackonkyojin 135 — 8y

1 answer

Log in to vote
1
Answered by
funyun 958 Moderation Voter
8 years ago

In the handle:

ti = script.Parent:WaitForChild("TouchInterest")
ticlone = ti:Clone() --So you can add it in later
ti:Destroy()
Ad

Answer this question