LocalSimulationTouched (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
Deprecated:This item is deprecated. Do not use it for new work.
LocalSimulationTouched ( Instance part )
Description Fired when another part comes in contact with another object. This event only sends data to the client notifying it that two parts have collided, whereas Touched sends data to the server.
Member of: BasePart


Example
Workspace.Part.LocalSimulationTouched:connect(function(p)
	print(p)
end)