Touched (Event)
From Legacy Roblox Wiki
![]() | |
Description | Fired when another part comes in contact with this object. |
---|---|
Member of: | BasePart |
Example
game.Workspace.Part.Touched:connect(function(hit) print(hit) end)
Note: Lots of objects (such as projectiles in weapons) have scripts that remove the part as soon as it hits something. This means that it is possible for the hit argument's Parent to be nil. Scripts that use Touched should check for this, otherwise they will break if they try to use members of hit's parent.