I am making a game currently, and you pickup weapons. I have a part I want to only be visible when you pick up the weapon. The part's name is "Hand."
Put this inside of the tool:
local tool=script.Parent local hand=Workspace.Hand --or wherever the hand is hand.Transparency=1; tool.Equipped:connect(function() hand.Transparency=0; end)