LocalSimulationTouched (Event)

From Legacy Roblox Wiki
Revision as of 17:22, 21 June 2011 by >MrNicNac (Distinguishing between Touched.)
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 that something has been touched, not the server.
Member of: BasePart
Example
game.Workspace.Part.LocalSimulationTouched:connect(function(p)
  print(p)
end)