It will only open once then stops working --variables local door = script.Parent:WaitForChild("Door") local open = script.Parent.Open local Debounce = false local Running = false local Open = false --open the door open.ClickDetector.MouseClick:connect(function() if Debounce == false and Running == false and Open == false then Debounce = true Running = true Open = true for i = 1,40 do door.CFrame = door.CFrame + Vector3.new(0,.1,0) wait() end Running = false Debounce = false end ####### ####### door if Debounce == false and Running == false and Open == true then Debounce = true Running = true open = false for i = 1,40 do door.CFrame = door.CFrame - Vector3.new(0,.1,0) wait() end end end) thanks for the help |