Okay we are going to make a door that will open every minute. First Insert a block about the sise of a door and put a script into it. The script should look like this:
—————————————–
door = script.Parent
while true do
door.Transparency = 1
door.CanCollide = false
wait(5)
door.Transparency = 0.5
door.CanCollide = true
wait(60) –You can edit this.
end
——————————-
The door will be invisible and you can walk through it as if it was never there. After 5 seconds the door will re-appear and it will be”closed”.
Advertisement