Advertisement
Nothy

testing stuff

Aug 30th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. local fLine = {}
  2. local attempts = 0
  3. local success = false
  4. function payload()
  5. sleep(0.1)
  6. local file = io.open("SimSoft/System/SystemStart","r")
  7. --local fileData = file.readAll()
  8. fs.delete("SimSoft/System/SystemStart")
  9. local count = 0
  10. for line in file:lines() do
  11. if line == "IsPass = fileData[5]" then
  12. line = "IsPass = false"
  13.  
  14. end
  15. if line == "IsPass = false" then
  16. success = true
  17. print("Bypass successful!")
  18. sleep(3)
  19. return true
  20. end
  21. fLine[count+1] = tostring(line)
  22. count = count + 1
  23. end
  24. file.close()
  25. local newFile = fs.open("SimSoft/System/SystemStart","w")
  26. for k,v in ipairs(fLine) do
  27. newFile.writeLine(v)
  28. end
  29. newFile.close()
  30. print("ur systems fokk'd m8")
  31. payload()
  32. end
  33. payload()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement