When the note touches the part, it doesn't destroy it.
script.Parent.Touched:Connect(function(touched) if touched.Parent == workspace.Note1 then script.Parent:Destroy() end end)
What am I doing wrong?
Try this one
script.Parent.Touched:Connect(function(touched) if touched == game.Workspace.Note1 then script.Parent:Destroy() end end)
It works for me