of     1   

ROZORT
#408401Monday, January 21, 2008 8:03 PM GMT

I need the script for a door Like the one in Servano's Build to survive that opens after 10 mins and stays open for 10 mins.
Zuka
#408424Monday, January 21, 2008 8:06 PM GMT

while true do wait(60*10) script.Parent.CanCollide = false script.Parent.Transparency = 1 wait(60*10) script.Parent.CanCollide = true script.Parent.Transparency = 0 end
Dued1
#408428Monday, January 21, 2008 8:06 PM GMT

thats easy. out this script under workspace. and name the door you want to open "door" while true do wait(600) game.Workspace.Door.Cancollide= false wait(600) game.Workspace.Door.Cancollide= true end
Dued1
#408441Monday, January 21, 2008 8:07 PM GMT

ah you beat me too it lol. yours is better though.
ROZORT
#414030Wednesday, January 23, 2008 1:42 PM GMT

Well I cant tell if the script works....how do you add messages that tell you how many minutes are left?

    of     1