of     1   

RobloxPWNER
#528385Tuesday, February 26, 2008 6:33 PM GMT

HOW DO I??????? The title says it all
RobloxPWNER
#528390Tuesday, February 26, 2008 6:34 PM GMT

I REALY REALLY NEED IT
AgentBloxxer
#528414Tuesday, February 26, 2008 6:45 PM GMT

Well, there is a couple things you have to do. ONE: Name all the doors the same exact thing TWO: Make ALL thier parents the workspace THREE: Insert this script to the workspace: while true do wait(#ofsecondsyouwantthedoortowaittoopen) door = game.Workspace.insertdoornamehere door.CanCollide = false door.Transpancy = 1 wait(#ofsecondsthedoorwillstayopen) door.CanCollide = true door.Transparency = 0 end
jeffcena
#528596Tuesday, February 26, 2008 8:30 PM GMT

Agent... He said a random door open! Here! while true do txt = math.random(1, 2) -- Change two to how many doors you have! if txt == 1 then wait(120) -- Two mins game.Workspace.>DoorNameHereNoSpaces<.Transparency = 0.5 game.Workspace.>DoorNameHereNoSpaces<.CanCollide = false wait(5) game.Workspace.>DoorNameHereNoSpaces<.Transparency = 0 game.Workspace.>DoorNameHereNoSpaces<.CanCollide = true end if txt == 2 then wait(120) -- Two mins game.Workspace.>OtherDoorNameHereNoSpaces<.Transparency = 0.5 game.Workspace.>OtherDoorNameHereNoSpaces<.CanCollide = false wait(5) game.Workspace.>OtherDoorNameHereNoSpaces<.Transparency = 0 game.Workspace.>OtherDoorNameHereNoSpaces<.CanCollide = true end end
RobloxPWNER
#528642Tuesday, February 26, 2008 8:48 PM GMT

thx FOR THE script i will try it out

    of     1