Answered by
3 years ago Edited 3 years ago
There is a function that may suit your needs here, commonly used for touch detection. I present you with: :GetTouchingParts()
.
1 | local touchingParts = script.Parent:GetTouchingParts() |
It returns an array containing all of the parts that are touching what script.Parent is. From there, it is just a matter of looping through it.
1 | for _,otherPart in ipairs (touchingParts) do |
However for your use-case, you want to destroy the part immediately upon contact with another part. You can do this by checking if there is anything at all in the returned array.
Final script:
1 | game:GetService( "RunService" ).Heartbeat:Connect( function () |
2 | local touchingParts = script.Parent:GetTouchingParts() |
3 | if #touchingParts > 0 then |
4 | script.Parent:Destroy() |