Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to check if a part is not being touched by anyone?

Asked by
Faazo 84
6 years ago

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:

01local TweenService = game:GetService("TweenService")
02local Door1 = script.Parent:WaitForChild("Door1")
03local Door2 = script.Parent:WaitForChild("Door2")
04local tweeningInformation = TweenInfo.new( 
05    0.5,
06    Enum.EasingStyle.Linear,
07    Enum.EasingDirection.Out,
08    0,
09    false,
10    0
11)
12local Door1Open = {CFrame = CFrame.new(29.706, 4.155, -47.327)}
13local Door2Open = {CFrame = CFrame.new(29.706, 4.155, -30.987)}
14local Door1Close = {CFrame = CFrame.new(29.706, 4.155, -41.823)}
15local Door2Close = {CFrame = CFrame.new(29.706, 4.155, -36.487)}
View all 45 lines...
0
the thing you want to do is like make a script that will do so that the door never closes until the player is a bit away? policopi 37 — 6y

2 answers

Log in to vote
3
Answered by
Amiaa16 3227 Moderation Voter Community Moderator
6 years ago

You can use GetTouchingParts() to get the list of all parts with CanCollide set to true that are touching (intersectign with) the door.

So, if you wanted to make it to a function, it would look like this:

1local function IsAnythingTouchingThisPart(part)
2    return #part:GetTouchingParts() ~= 0
3end
0
Nevermind, I understand it now. Thank you! Faazo 84 — 6y
Ad
Log in to vote
-2
Answered by 6 years ago
1while part:FindFirstChild("Humanoid") ~= nil do
2    -- Code Here
3end

Answer this question