1 | local part = script.Parent |
2 | part.Touched:connect( function () |
3 | local touching = part:GetTouchingParts() |
4 | for parts,touchingpart in pairs (touching) do |
5 | print (touchingpart.Name) |
This script prints the names of all parts that touch the part
1 | local part = script.Parent |
2 | part.Touched:connect( function () |
3 | local touching = part:GetTouchingParts() |
this script executes your code when 2 parts touch the part
this sometimes bugs so i would prefer to use this:
1 | local part = script.Parent |
5 | local touching = part:GetTouchingParts() |