Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I test for when two parts touch?

Asked by 6 years ago

I tried googling this but all that came up was if the player touched the part. Can somebody show how to do this?

0
:GetTouchingParts() greatneil80 2647 — 6y
0
how would I use it? barrettr500 53 — 6y
0
If you connect to .Touched it returns the part that touched it. exxtremestuffs 380 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
1local part = script.Parent
2part.Touched:connect(function()
3    local touching = part:GetTouchingParts()
4    for parts,touchingpart in pairs (touching) do
5        print(touchingpart.Name)
6    end
7end)

This script prints the names of all parts that touch the part

1local part = script.Parent
2part.Touched:connect(function()
3    local touching = part:GetTouchingParts()
4    if #touching == 2 then
5        --script here
6    end
7end)

this script executes your code when 2 parts touch the part

this sometimes bugs so i would prefer to use this:

1local part = script.Parent
2wait ()
3while true do
4    wait ()
5    local touching = part:GetTouchingParts()
6    if #touching == 2 then
7        --script here
8    end
9end)
Ad

Answer this question