Touched (Event)
From Legacy Roblox Wiki
![]() | |
Description | Fired when another object comes in contact with this object. |
---|---|
Member of: | BasePart |
Example
--this will print the name of any object touching 'game.Workspace.Part' 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.