|
| 14 Jun 2013 06:59 PM |
print ("VIP T-Shirt Door Script Loaded")
-- Put who can go through door here permission = { "milhouse90" }
-- Shirt URL below. texture = "http://www.roblox.com/Double-VIP-Lost-Souls-Mineblox-item?id=114825773"
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 then Door.Transparency = 0.7 Door.CanCollide = false wait(4) Door.CanCollide = true Door.Transparency = 0 print("Human touched door") elseif (checkOkToLetIn(human.Parent.Name)) then print("Human passed test") Door.Transparency = 0.7 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 |
|