Touched (Event)

From Legacy Roblox Wiki
Revision as of 21:25, 8 August 2011 by >Sncplay42 (warning about Parent property and weapons)
Jump to navigationJump to search
Touched ( BasePart hit )
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.