I have it so when I click on a tool, it duplicates the tool, and it drops right in front of me. I want it so when the duplicated tool handle touches the brick, something happens to it. This is the code that I have so far and does not seem to work.
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit:IsA( "UnionOperation" ) then |
3 | if hit.Name = = "Handle" then |
4 | script.Parent:Destroy() |
5 | end |
6 | end |
7 | end ) |
The issue that I was having is solved, and the reason their was an issue is because I was using a local script to clone the tool, which only made it client side, and the server did not detect it being created. I also had to use a remote event to fire the server.