StoppedTouching (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
Deprecated:This item is deprecated. Do not use it for new work. Use TouchEnded instead.
StoppedTouching ( BasePart otherPart )
Description Fired when otherPart stops touching this object.
Member of: BasePart


Example

This would print the name of any part that stops touching the part named "Part" in the Workspace:

Workspace.Part.StoppedTouching:connect(function(otherPart)
	print(otherPart.Name)
end)