I've been trying to do this for a while. And I need it so I configure the script so I can switch through "High Level Key Card Access" and "Low Level Key Card Access". Any suggestions would be appreciated.
Try to do this, put a script on the door
script.Parent.Touched:Connect(function(Hit) local CheckIfCard = Hit.Parent:GetDescendants() for i,v in pairs(CheckIfCard) do if v:IsA("Tool") and v.Name == "CardName" then script.Parent.CanCollide = false -- Or any open door script end end end
Hope it works, sorry if i didnt understand well.
Closed as Not Constructive by JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?