TouchEnded (Event)

From Legacy Roblox Wiki
Revision as of 06:17, 27 April 2023 by Realjame (talk | contribs) (Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
TouchEnded ( BasePart otherPart )
Description Fired when otherPart stops touching this object.
Member of: BasePart


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