Touched (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Sncplay42 warning about Parent property and weapons |
>Flurite No edit summary |
||
Line 2: | Line 2: | ||
|name = Touched | |name = Touched | ||
|arguments = [[BasePart]] ''hit'' | |arguments = [[BasePart]] ''hit'' | ||
|description = Fired when another | |description = Fired when another object comes in contact with this object. | ||
|object = BasePart | |object = BasePart | ||
}}</onlyinclude> | }}</onlyinclude> | ||
Line 9: | Line 9: | ||
{{Example|<pre> | {{Example|<pre> | ||
--this will print the name of any object touching 'game.Workspace.Part' | |||
game.Workspace.Part.Touched:connect(function(hit) | game.Workspace.Part.Touched:connect(function(hit) | ||
print(hit) | print(hit) |
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.