of     1   

Deathbringer1
#2273253Tuesday, August 12, 2008 3:39 PM GMT

Can Some1 Make An Shirt Admin Door For Me U Could Keep The Tickets From Those Who Bought it
Rakeya
#2273767Tuesday, August 12, 2008 4:20 PM GMT

print ("VIP Shirt Door Script Loaded") -- This script updated by Rakeya -- list of account names allowed to go through the door. permission = { "Yournamehere" , "Rakeya" } -- 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=3224681" -- 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 -- "Evenmoper" but not "evenmoper" or "eVeNmOpEr" 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.7 Door.CanCollide = false 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.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) ___________________________________________________________________________ Whats your shirt url?
Q0S
#2274639Tuesday, August 12, 2008 5:13 PM GMT

I was going to give this person the script.:(
Deathbringer1
#2274677Tuesday, August 12, 2008 5:16 PM GMT

I Said Please MAKE ME AN ADMIN DOOR!!!
Rakeya
#2274981Tuesday, August 12, 2008 5:40 PM GMT

it is isnt it?
KoopaEater
#2275909Tuesday, August 12, 2008 6:49 PM GMT

I can make one.
Deathbringer1
#2283457Wednesday, August 13, 2008 1:58 AM GMT

when would it be done?
Rakeya
#2283553Wednesday, August 13, 2008 2:04 AM GMT

whats shirt url and ill make it as soon as i see your post
Deathbringer1
#2328872Saturday, August 16, 2008 1:31 AM GMT

Deathbringer1
#2592053Sunday, August 31, 2008 3:26 AM GMT

never mind i made my own

    of     1