of     1   

steellox
#123560066Monday, January 20, 2014 1:33 AM GMT

Anything would help, it needs to be voice commanded by specific people. (Holo Door)
bohdan77
#123560236Monday, January 20, 2014 1:35 AM GMT

OPEN SESAME
MettaurSp
#123560918Monday, January 20, 2014 1:42 AM GMT

^yes
MrJoeyJoeJoey
#123562249Monday, January 20, 2014 1:56 AM GMT

GOBWEY.
transIate
#123579738Monday, January 20, 2014 4:56 AM GMT

game.Players['NAME'].Chatted:connect(function(open) if string.sub(open,1,9)=='OPENSESAME' then script.Parent.Parent -- Script to Door .Door.CFrame=CFrame.new(180,0,0)*CFrame.new(180,0,0) end) end
morash
#123586468Monday, January 20, 2014 6:22 AM GMT

game.Players['NAME']Chatted:connect(function(open) if open == "OPENSESAME" then script.Parent.Anchored = false position = Instance.new("BodyPosition", script.Parent) position.maxForce = Vector3.new(1e+999,1e+999,1e+999) while true do if game.Players['NAME'] then position.position = game.Players['NAME'].Character.Torso.Position end game:GetService("RunService").RenderStepped:wait() end end end)
transIate
#123587759Monday, January 20, 2014 6:47 AM GMT

wow @morash u just like to give the most understandable scr0ptz evr
Goulstem
#123590783Monday, January 20, 2014 7:59 AM GMT

game.Players.YourNameHere.Chatted:connect(function(msg) if string.sub(msg,1,11)=='open u dore' then for i = 0.1, 1, 0.1 do script.Parent.ParentDoor.Transparency = i wait(0.1) end script.Parent.Parent.Door.CanCollide = false end end)
MrJoeyJoeJoey
#123661539Tuesday, January 21, 2014 2:04 AM GMT

USe morashes script it works the best.
PhokiusV3
#123669840Tuesday, January 21, 2014 3:33 AM GMT

Commands = {"OPEN SESAME"} game.Players[ADMIN].Chatted:connect(function (msg, plr) for i=1, #Commands do if Commands[i].lower == msg.lower then -- Check what command it was via msg and perform the respective function. end end end)
insaneROBLOXER123
#123674670Tuesday, January 21, 2014 4:36 AM GMT

*cough*wrongforum*cough* -insane-enasni-
Clawrid
#128338558Monday, March 17, 2014 11:16 PM GMT

LOL
Goulstem
#128346033Tuesday, March 18, 2014 12:30 AM GMT

^You just bumped a 2 month old thread ._.
Swagglycool
#129657169Wednesday, April 02, 2014 9:39 PM GMT

-- This CAN be used for more than a holo door. For example, if you wanted to use this as a spawn door also, you would simply copy the entire script, place down the part as to which you wanted the spawn door(s) to be, and paste the script into that part. You may also want to change "Open door" to "Open spawns", and "Close door" to "Close spawns" admins = {"Yourname"} --Admin names here function isAdmin(name) for i,v in pairs(admins) do if name:lower() == v:lower() then return true end end return false end local door=script.Parent game.Players.PlayerAdded:connect(function(p) if isAdmin(p.Name) then p.Chatted:connect(function(msg) if msg=="!open holo" then --This is what an admin says to OPEN the holo door [It can be changed] door.Transparency=.1 wait (.1) door.Transparency=.2 wait (.1) door.Transparency=.3 wait (.1) door.Transparency=.4 wait (.1) door.Transparency=.5 wait (.1) door.Transparency=.6 wait (.1) door.Transparency=.7 wait (.1) door.Transparency=.8 wait (.1) door.Transparency=.9 wait (.1) door.Transparency=1 door.CanCollide=false elseif msg=="!close holo" then --This is what any admin says to CLOSE the holo door [It can be changed] door.CanCollide=true door.Transparency=.9 wait (.1) door.Transparency=.8 wait (.1) door.Transparency=.7 wait (.1) door.Transparency=.6 wait (.1) door.Transparency=.5 wait (.1) door.Transparency=.4 wait (.1) door.Transparency=.3 wait (.1) door.Transparency=.2 wait (.1) door.Transparency=.1 wait (.1) door.Transparency=0 end end) end end)
morash
#129664680Wednesday, April 02, 2014 10:54 PM GMT

^Or you could stop being a horrible scripter^

    of     1