The doors don’t move at all.
local function openBlastDoor(Door)
local leftPanel = Door.BlastGate.LeftDoorPanel
local rightPanel = Door.BlastGate.RightDoorPanel
local leftGoal = {}
leftGoal.Position = Door.BlastGate.LeftDoorPanel.CFrame.Position + CFrame.new(11,0,0).Position
local rightGoal = {}
rightGoal.Position = Door.BlastGate.LeftDoorPanel.CFrame.Position - CFrame.new(11,0,0).Position
local Tween = TweenService:Create(leftPanel,info,leftGoal):Play()
local Tween2 = TweenService:Create(rightPanel,info,rightGoal):Play()
Door.KeycardReader.DoorOpen:Play()
Door.KeycardReader.DoorOpen.Ended:Wait()
print("allowed")
end