Qpwisnd

Untitled

Jan 25th, 2025
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.54 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. local old = unpack
  5. local old_append = appendfile
  6.  
  7. local output = "yes.txt"
  8.  
  9. local Credits = "\n"..[[
  10.  
  11. _____ _______ _____ _______ _____ _____ _____
  12. /\ \ /::\ \ /\ \ /::\ \ /\ \ /\ \ /\ \
  13. /::\ \ /::::\ \ /::\____\ /::::\ \ /::\ \ /::\ \ /::\____\
  14. /::::\ \ /::::::\ \ /:::/ / /::::::\ \ /::::\ \ /::::\ \ /:::/ /
  15. /::::::\ \ /::::::::\ \ /:::/ / /::::::::\ \ /::::::\ \ /::::::\ \ /:::/ /
  16. /:::/\:::\ \ /:::/~~\:::\ \ /:::/ / /:::/~~\:::\ \ /:::/\:::\ \ /:::/\:::\ \ /:::/ /
  17. /:::/__\:::\ \ /:::/ \:::\ \ /:::/ / /:::/ \:::\ \ /:::/ \:::\ \ /:::/__\:::\ \ /:::/____/
  18. \:::\ \:::\ \ /:::/ / \:::\ \ /:::/ / /:::/ / \:::\ \ /:::/ \:::\ \ /::::\ \:::\ \ |::| |
  19. ___\:::\ \:::\ \ /:::/____/ \:::\____\ /:::/ / /:::/____/ \:::\____\ /:::/ / \:::\ \ /::::::\ \:::\ \ |::| | _____
  20. /\ \:::\ \:::\ \ |:::| | |:::| | /:::/ / |:::| | |:::| | /:::/ / \:::\ ___\ /:::/\:::\ \:::\ \ |::| | /\ \
  21. /::\ \:::\ \:::\____\|:::|____| |:::| |/:::/____/ |:::|____| |:::| |/:::/____/ \:::| |/:::/__\:::\ \:::\____\ |::| | /::\____\
  22. \:::\ \:::\ \::/ / \:::\ \ /:::/ / \:::\ \ \:::\ \ /:::/ / \:::\ \ /:::|____|\:::\ \:::\ \::/ / |::| | /:::/ /
  23. \:::\ \:::\ \/____/ \:::\ \ /:::/ / \:::\ \ \:::\ \ /:::/ / \:::\ \ /:::/ / \:::\ \:::\ \/____/ |::| | /:::/ /
  24. \:::\ \:::\ \ \:::\ /:::/ / \:::\ \ \:::\ /:::/ / \:::\ \ /:::/ / \:::\ \:::\ \ |::|____|/:::/ /
  25. \:::\ \:::\____\ \:::\__/:::/ / \:::\ \ \:::\__/:::/ / \:::\ /:::/ / \:::\ \:::\____\ |:::::::::::/ /
  26. \:::\ /:::/ / \::::::::/ / \:::\ \ \::::::::/ / \:::\ /:::/ / \:::\ \::/ / \::::::::::/____/
  27. \:::\/:::/ / \::::::/ / \:::\ \ \::::::/ / \:::\/:::/ / \:::\ \/____/ ~~~~~~~~~~
  28. \::::::/ / \::::/ / \:::\ \ \::::/ / \::::::/ / \:::\ \
  29. \::::/ / \::/____/ \:::\____\ \::/____/ \::::/ / \:::\____\
  30. \::/ / ~~ \::/ / ~~ \::/____/ \::/ /
  31. \/____/ \/____/ ~~ \/____/
  32.  
  33. Moonsec V3 Dumper made by Solodev
  34. ]]
  35.  
  36.  
  37.  
  38. local function appendfile(filename,content)
  39. if not isfile(filename) then
  40. writefile(filename,string.format("%s\n %s",Credits,content))
  41. end
  42.  
  43. return old_append(filename,content)
  44. end
  45.  
  46. local function format(tab)
  47. local result = "{"
  48. for index, value in pairs(tab) do
  49. if type(value) == "table" then
  50. result = result .. format(value)
  51. else
  52. result = result .. string.format("\n'Index: %s' | 'Value: %s', ", tostring(index), tostring(value))
  53. end
  54. end
  55. result = result:sub(1, -3) .. "\n},\n"
  56. return result
  57. end
  58.  
  59. local function foreach(tab)
  60. if type(tab) == "table" then
  61. for index, value in pairs(tab) do
  62. if type(value) == "table" then
  63. appendfile(output, format(value) .. "\n")
  64. else
  65. appendfile(output, string.format("{Index: %s | Value: %s\n", tostring(index), tostring(value)))
  66. end
  67. end
  68. end
  69. end
  70.  
  71. function unpack(...)
  72. if type(old(...)) == "table" then
  73. foreach(old(...))
  74. end
  75. return old(...)
  76. end
  77.  
  78.  
  79. --[[ Script ]]--
  80.  
  81. --> Put your obfuscated script here
  82. --> Using tbo as an example : It will freeze your game for a bit and then create a file named after your output
  83. --> then it will basically just put all the stuff in there, just wait for it to be done
  84.  
  85. --> either loadstring or just the pasted script here
  86. --> btw dont use tbo its skidded lmao (this is only used for a example)
  87.  
  88. loadstring(game:HttpGet("https://raw.githubusercontent.com/leakereee/m1resetv2/refs/heads/main/getbetterprotectionaxl.lua"))()
Advertisement
Add Comment
Please, Sign In to add comment