Description

pwe're taking over robloxrint ("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/?version=1&id=1194117" -- 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
There are currently no running experiences.