We all know about the Touched event, is there any work-around to detect when a Player stops touching a certain part?
3 Likes
Use TouchEnded, here is an api article: https://developer.roblox.com/en-us/api-reference/event/BasePart/TouchEnded
5 Likes
You would indeed use the BasePart.TouchEnded
event. The listeners get the part that stopped touching as an argument. You can check for a player the same way you detect if something is a player by checking for a humanoid or using the Players:GetPlayerFromCharacter
method
3 Likes