What solutions have you tried so far? I’ve tried looking and I even changed the CFrame with position (Union tweening problem with CFrame) but that didn’t work.
This is not the whole script
enterDoor.Parts.Touched:Connect(function(hit)
if hit.Parent:IsA("Tool") and hit.Parent.Name == "Keycard" then
if not isTouched then
isTouched = true
TweenService:Create(enterDoor, doorTweenInfo, {CFrame = enterDoor.OpenRightDoor.CFrame}):Play()
end)