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

How do I make a keycard for this door?

Asked by
DevNetx 250 Moderation Voter
11 years ago

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.

01local light = script.Parent.Parent.Parent.Light
02local DB = script.Parent.Parent.Parent.DB
03local Door = script.Parent.Parent.Parent.Door
04function Close()
05for i=1, 49 do
06 
07wait(0.001)
08Door.CFrame = Door.CFrame * CFrame.new(0, 0, -0.1)
09 
10end
11end
12 
13function Open()
14for i=1, 49 do
15 
View all 41 lines...
1
Please fix the Lua code showing because some of the code is showing outside of the code block. Thanks! Gamenew09 180 — 11y

Answer this question