of     1   

LXXXVII
#228378794Sunday, December 03, 2017 2:23 PM GMT

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
mattscy
#228378891Sunday, December 03, 2017 2:26 PM GMT

its hard to tell whats happening but try adding Debounce = false before the last end)
LXXXVII
#228381031Sunday, December 03, 2017 3:20 PM GMT

ok thank you

    of     1