of     1   

cpPenguin1289
#63476348Sunday, February 26, 2012 2:48 PM GMT

open = 0 local names = {"cpPenguin1289","emj1111","tjj22501","cpExtra1289"} function touch(p) for i,v in pairs(names) do if p and p.Parent and p.Parent.Name:lower() == v:lower() then open = tick() + 3 script.Parent.CanCollide = false script.Parent.Transparency = 0.8 while open < tick() do wait(0.5) end script.Parent.CanCollide = true script.Parent.Transparency = 0 end end end script.Parent.Touched:connect(touch) This script isn't working. Could someone please help me fix it. Thanks!
BunnyBoy26
#63477946Sunday, February 26, 2012 3:30 PM GMT

If you are increasing the value of UNIX time by three in a variable, 'open' would be greater than tick(), not less than.

    of     1