Talk:How To Make A Door That Opens Every Minute

From Legacy Roblox Wiki
Revision as of 02:13, 18 August 2008 by >Outofspace
Jump to navigationJump to search

The script

door = script.Parent 

while true do

door.Transparency = 1
door.CanCollide = false 
wait(5)
door.Transparency = 0.5
door.CanCollide = true 
wait(60)
end 

does work, but it lagged my map if I made it too fast, though. MINDRAKER 20:18, 17 August 2008 (CDT)

I'll put a notice in the script. ⇒OutOfSpace