of     1   

EliteTCer
#36311931Sunday, October 31, 2010 8:49 PM GMT

print ("VIP T-Shirt Door Script Loaded") -- list of account names allowed to go through the door. permission = { "YourNameHere" } -- This is how many people can still get through, so u don't have to change shirts. You can also have another friend here. -- TextureId of the VIP shirt. texture = "http://www.roblox.com/asset/?id=36627089" -- Go to the wiki below this script to find out how to change the shirt. And paste the link in between the "" marks. function checkOkToLetIn(name) for i = 1,#permission do -- convert strings to all upper case, otherwise we will let in -- "Username" but not "username" or "uSERNAME" 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 if human.Parent.Torso.roblox.Texture == texture then --the shirt Door.Transparency = 0 Door.CanCollide = true wait(4) -- this is how long the door is open Door.CanCollide = true Door.Transparency = 0 -- a human has touched this door! print("Human touched door") -- test the human's name against the permission list elseif (checkOkToLetIn(human.Parent.Name)) then print("Human passed test") Door.Transparency = 0 Door.CanCollide = true 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)
EliteTCer
#36313544Sunday, October 31, 2010 9:16 PM GMT

I've noticed that no one cares to reply to a legitimate question. People only reply to the dumb ones with sarcasm.
Spectrumw
#36313891Sunday, October 31, 2010 9:22 PM GMT

-Replies with sarcasm- What about if you learn how to script instead of using a free model?... Wait, i did not use sarcasm in this sentence... Nevermind.
llmutell
#36313897Sunday, October 31, 2010 9:22 PM GMT

Mainly because no one likes to sift through a bunch of lines of code, usually looking for an almost unnoticable flaw. If you havn't gotten a response it's because the flaw isn't obvious or easy to fix. M
fractality
#36315750Sunday, October 31, 2010 9:53 PM GMT

I can't see why it works... A little off topic, but as soon as I saw this thread I also saw an ad by you. o_o

    of     1