|
| 08 Nov 2011 07:52 PM |
This is a admin door script for a T-shirt It isnt working
print ("Admin Shirt Door Script Loaded")
permission = { "name" }
texture = { "http://www.roblox.com/super-pony-item?id=65371582" }
function checkOkToLetIn(name) for i = 1,#permission do
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 or texture2 then Door.Transparency = 0.5 Door.CanCollide = false wait(1) Door.CanCollide = true Door.Transparency = 0
print("Human touched door") elseif (checkOkToLetIn(human.Parent.Name)) then print("Human passed test") Door.Transparency = 0.0 Door.CanCollide = false wait(4) Door.CanCollide = true Door.Transparency = 0 else human.Health = 0 end end end
script.Parent.Touched:connect(onTouched)
|
|
|
| Report Abuse |
|