Nova355killer

copy dv console text

Nov 8th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local copy = setclipboard or clipboard.set or copystring or syn.write_clipboard
  2.  
  3. local str = ''
  4. for _,v in next, game.CoreGui.DevConsoleMaster.DevConsoleWindow.DevConsoleUI.MainView.ClientLog:children() do
  5. local m = v:FindFirstChild'msg'
  6. if(m)then
  7. str=str..m.Text..'\n'
  8. end
  9. end
  10. if(copy)then
  11. copy(str)
  12. elseif(writefile)then
  13. writefile("dev_logs.txt",str)
  14. else
  15. error("get a better exploit lol")
  16. end
Advertisement
Add Comment
Please, Sign In to add comment