Touched (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Anaminus No edit summary |
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">" |
||
(27 intermediate revisions by 11 users not shown) | |||
Line 1: | Line 1: | ||
{{Event| | <onlyinclude>{{Event | ||
name = Touched | |name = Touched | ||
|arguments = [[ | |arguments = [[RBX.lua.BasePart (Object)|BasePart]] <var>otherPart</var> | ||
|description = Fired when another | |description = Fired when another object comes in contact with this object. | ||
|object = | |object = BasePart | ||
|}} | }}</onlyinclude> | ||
{{clear floats}} | |||
{{Example|This code would print the name of any object touching the part: | |||
<syntaxhighlight lang="lua"> | |||
Workspace.Part.Touched:connect(function(otherPart) | |||
print(otherPart) | |||
end) | |||
</syntaxhighlight>}} | |||
{{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 <var>otherPart</var> argument's [[Parent (Property)|Parent]] to be nil. Scripts that use the [[Touched (Event)|Touched]] event should check for this, otherwise they will break if they try to use members of <var>otherPart</var>'s parent.|red|dark=yes}} | |||
[[Category:Events]] |
Latest revision as of 06:14, 27 April 2023
Touched ( BasePart otherPart ) | |
Description | Fired when another object comes in contact with this object. |
---|---|
Member of: | BasePart |
Example
This code would print the name of any object touching the part:
Workspace.Part.Touched:connect(function(otherPart)
print(otherPart)
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 otherPart argument's Parent to be nil. Scripts that use the Touched event should check for this, otherwise they will break if they try to use members of otherPart's parent.