LocalSimulationTouched (Event)

From Legacy Roblox Wiki
Revision as of 17:24, 21 June 2011 by >MrNicNac (Clarifying more.)
Jump to navigationJump to search
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 send data to the server.
Member of: BasePart
Example
game.Workspace.Part.LocalSimulationTouched:connect(function(p)
  print(p)
end)