How do I make a keycard for this door?
I want to make a keycard for this door, but I don't know how to make the keycard.
Heres the script for the door when you use the card to open it.
01 | local light = script.Parent.Parent.Parent.Light |
02 | local DB = script.Parent.Parent.Parent.DB |
03 | local Door = script.Parent.Parent.Parent.Door |
08 | Door.CFrame = Door.CFrame * CFrame.new( 0 , 0 , - 0.1 ) |
17 | Door.CFrame = Door.CFrame * CFrame.new( 0 , 0 , 0.1 ) |
25 | if ((string.find(hit.Parent.Name, "Card" )) ~ = nil ) then |
26 | if (hit.Parent.Code.Value = = script.Parent.Parent.Parent.Serial.Value) or (hit.Parent.Code.Value = = 0 ) then |
27 | if DB.Value = = false then |
29 | light.BrickColor = BrickColor.new( "Bright green" ) |
33 | light.BrickColor = BrickColor.new( "Black" ) |
41 | script.Parent.Touched:connect(Touch) |