Admins = {"GalaxyMaster99"} --Add admins here GroupID=199219 MinimumRank=14 -- CheckIfAdmin=function(Player) for _,v in pairs(Admins) do if(v:lower()==Player.Name:lower())then return true end end end local M9 = script.Parent --Model game.Players.PlayerAdded:connect(function(nP) if(CheckIfAdmin(nP))or((nP:IsInGroup(GroupID))and(nP:GetRankInGroup(GroupID)>=MinimumRank))then nP.Chatted:connect(function(msg) if string.lower(msg) == string.lower("Open Holodoor") then M9.GM1.CFrame=M9.B1.CFrame+Vector3.new(0.1,0,0) M9.GM2.CFrame=M9.B2.CFrame+Vector3.new(0.1,0,0) M9.GM3.CFrame=M9.B3.CFrame+Vector3.new(-0.1,0,0) end end) end end)