How do I make something disappear when someone touches is, but it only disappears for the user that touches it?
Step 1) Make a LocalScript in StarterGui.
Step 2) Open the LocalScript.
Step 3) Enter the following code: (REPLACE game.Workspace.MyPart
WITH YOUR PART'S PATH!)
local part = game.Workspace.MyPart --REPLACE THIS WITH YOUR PART'S PATH! part.Touched:Connect(function() part:Destroy() --you can change this to something else, such as part.Transparency = 1 end)