01-15-2011, 05:42 PM
(01-15-2011, 05:37 PM)Jacob_ Wrote: Try this script:
Quote:allowed = {"YourNameHere", "OtherNameHere"}
function in_table ( e, t )
for _,v in pairs(t) do
if (v==e) then return true end
end
return false
end
function onCollide(part)
if part.Parent:isA("Character") then
local name = part.Parent.Name
if in_table(name, allowed) then
if script.Parent.Collidable then
script.Parent.Collidable = false
script.Parent.Transparency = 0.5
sleep(1)
script.Parent.Collidable = true
script.Parent.Transparency = 0
end
end
end
end
link(script.Parent.Collided, onCollide)
It doesn't kill, but that would be easy to add if you wanted to.
Make it so it doesn't kill when closed and only kills wen opened.
And can you make it so you need an admin shirt (If a shop comes out)
Or maybe a password you say in-game to make you a VIP?