of     1   

Nvinethe3rd
#40293268Monday, January 03, 2011 11:23 PM GMT

The script proving you wrong: print("VIP Door Script loaded") -- list of account names allowed to go through the door. permission = {"Nvinethe3rd","ciale3","Player3"}--Put your friends name's here. You can add more. function checkOkToLetIn(name) for i = 1,#permission do -- convert strings to all upper case, otherwise we will let in, -- "conrad105," and, "builderman," but not, "blast1." -- Why? Because, "blast1," is how it is spelled in the permissions. if (string.upper(name) == string.upper(permission[i])) then return true end end return false end local Door = script.Parent function onTouched(hit) print("Door Hit") local human = hit.Parent:findFirstChild("Humanoid") if (human ~= nil ) then -- a human has touched this door! print("Human touched door") -- test the human's name against the permission list if (checkOkToLetIn(human.Parent.Name)) then print("Human passed test") Door.Transparency = 0.7 Door.CanCollide = false wait(4) -- this is how long the door is open Door.CanCollide = true Door.Transparency = 0 else human.Health= 0 -- delete this line of you want a non-killing VIP door end end end script.Parent.Touched:connect(onTouched)
DangCool
#40293356Monday, January 03, 2011 11:24 PM GMT

[ Content Deleted ]
suremark
#40293435Monday, January 03, 2011 11:25 PM GMT

Indeed.

    of     1