Touched (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy formatted |
>Sncplay42 warning about Parent property and weapons |
||
Line 1: | Line 1: | ||
<onlyinclude>{{Event | <onlyinclude>{{Event | ||
|name = Touched | |name = Touched | ||
|arguments = [[BasePart]] '' | |arguments = [[BasePart]] ''hit'' | ||
|description = Fired when another part comes in contact with this object. | |description = Fired when another part comes in contact with this object. | ||
|object = BasePart | |object = BasePart | ||
Line 9: | Line 9: | ||
{{Example|<pre> | {{Example|<pre> | ||
game.Workspace.Part.Touched:connect(function( | game.Workspace.Part.Touched:connect(function(hit) | ||
print( | print(hit) | ||
end) | end) | ||
</pre>}} | </pre>}} | ||
{{EmphasisBox|'''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''<nowiki>'</nowiki>s parent.|red|dark=yes}} | |||
[[Category:Events]] | [[Category:Events]] |
Revision as of 21:25, 8 August 2011
![]() | |
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.