Touched (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Flurite No edit summary |
>Flurite No edit summary |
(No difference)
|
Revision as of 22:24, 23 December 2011
![]() | |
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.