diff --git a/client/interacts.lua b/client/interacts.lua index 8597bfa..d1266fd 100644 --- a/client/interacts.lua +++ b/client/interacts.lua @@ -78,7 +78,7 @@ local function CreateInteractions() currentSelection += 1 end - if IsControlJustPressed(0, 38) and isClose then + if isClose and IsControlJustPressed(0, 38) then local option = options[currentSelection] if option then @@ -169,4 +169,4 @@ CreateThread(function() Wait(threadTimer) end -end) \ No newline at end of file +end)