of     1   

Falq
#140843991Saturday, July 19, 2014 2:14 PM GMT

?
Inspectial
#140844064Saturday, July 19, 2014 2:15 PM GMT

no. function onTouch(hit) --code here end script.Parent.Touched:connect(onTouch)
Falq
#140844106Saturday, July 19, 2014 2:16 PM GMT

no i mean if i want to use touchended do i put it in a touched event and this is betr script.Parent.Touched:connect(function(hit) end)
Inspectial
#140844172Saturday, July 19, 2014 2:17 PM GMT

i don't think so.
ScottRhode
#140848239Saturday, July 19, 2014 3:28 PM GMT

TouchEnded is an event just as much as touched. Workspace.Part.TouchEnded:connect
Notunknown99
#140848302Saturday, July 19, 2014 3:29 PM GMT

script.Parent.Touched:connect(function(obj) print(obj.Name .. ' touched ' .. script.Parent.Name) end) script.Parent.TouchEnded:connect(function(obj) print(obj.Name .. ' stopped touching ' .. script.Parent.Name) end)

    of     1