TouchEnded (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
New page: <onlyinclude>{{Event |name = TouchEnded |arguments = BasePart ''otherPart'' |description = Fired when otherPart stops touching this object. |object = BasePart }}</onlyinclude> {{clear...
 
>Legend26
New page: <onlyinclude>{{Event |name = TouchEnded |arguments = BasePart ''otherPart'' |description = Fired when otherPart stops touching this object. |object = BasePart }}</onlyinclude> {{clear...
(No difference)

Revision as of 19:20, 8 October 2011

TouchEnded ( BasePart otherPart )
Description Fired when otherPart stops touching this object.
Member of: BasePart


Example
game.Workspace.Part.TouchEnded:connect(function(otherPart)
  print(otherPart)
end)