How to check if a part is not being touched by anyone?
Hi! So I made this sliding door in my game and I think it works pretty well, but there is one problem. The door shuts in your face if you stay there for too long. I need it to stay open when a player touched it, and only close when nobody is touching it. I want to know how to check if my detector is not being touched, so it doesn't shut on anyone's face. Is there any piece of script that I could use for this? Preferably something that can be used in a if statement? If not then are there any other ways I could avoid this problem? Help is much appreciated. Thanks!
p.s. If you need the code here it is:
01 | local TweenService = game:GetService( "TweenService" ) |
02 | local Door 1 = script.Parent:WaitForChild( "Door1" ) |
03 | local Door 2 = script.Parent:WaitForChild( "Door2" ) |
04 | local tweeningInformation = TweenInfo.new( |
06 | Enum.EasingStyle.Linear, |
07 | Enum.EasingDirection.Out, |
12 | local Door 1 Open = { CFrame = CFrame.new( 29.706 , 4.155 , - 47.327 ) } |
13 | local Door 2 Open = { CFrame = CFrame.new( 29.706 , 4.155 , - 30.987 ) } |
14 | local Door 1 Close = { CFrame = CFrame.new( 29.706 , 4.155 , - 41.823 ) } |
15 | local Door 2 Close = { CFrame = CFrame.new( 29.706 , 4.155 , - 36.487 ) } |
16 | local Tween 1 Open = TweenService:Create(Door 1 ,tweeningInformation,Door 1 Open) |
17 | local Tween 1 Close = TweenService:Create(Door 1 ,tweeningInformation,Door 1 Close) |
18 | local Tween 2 Open = TweenService:Create(Door 2 ,tweeningInformation,Door 2 Open) |
19 | local Tween 2 Close = TweenService:Create(Door 2 ,tweeningInformation,Door 2 Close) |
23 | script.Parent.Detector 1. Touched:Connect( function () |
24 | if dooropen = = false then |
35 | script.Parent.Detector 2. Touched:Connect( function (hit) |
36 | if dooropen = = false then |