The title pretty much explains it. How do I make a script that performs a function after a player stops touching a certain part?
You would use this event http://wiki.roblox.com/index.php?title=API:Class/BasePart/TouchEnded
Workspace.Part.TouchEnded:connect(function(otherPart) print(otherPart) end)