of     1   

Troyg12
#523614Sunday, February 24, 2008 5:48 PM GMT

I need to know how to make a script that will make a dor open at certain times like wait(120). Someone post a script that will make a door cancollide false such as at every 120 seconds and make it have a function so it stays open for around 10 seconds or w/e someone pease reply to this!
BouyertheDestroyer
#523664Sunday, February 24, 2008 6:01 PM GMT

while true do wait(120) script.Parent.Transparency = 1 script.Parent.CanCollide = false wait(10) script.Parent.Transparency = 0 script.Parent.CanCollide = true end
Troyg12
#523669Sunday, February 24, 2008 6:03 PM GMT

Thanks alot!I needed it for my race im making =P
BouyertheDestroyer
#523719Sunday, February 24, 2008 6:23 PM GMT

Oh, a race? I thought it was for zombies or something. If I were you, I would make a value and make a function that runs when the value is changed. It would be easier to edit.

    of     1