moathon

idk

Apr 22nd, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function Compare(ArrayA, ArrayB)
  2. local False = false;
  3. for i, v in pairs(ArrayA) do
  4. if (ArrayA[i] ~= ArrayB[i]) then
  5. False = true;
  6. end
  7. end
  8.  
  9. if (False) then
  10. return false;
  11. end
  12. return true;
  13. end
Add Comment
Please, Sign In to add comment