Advertisement
DiveGamerV2

Shily IV Executa Script Mensagem

Dec 6th, 2024 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. print("Script Bypass Ativado")
  2.  
  3. local PastebinBypass
  4. PastebinBypass = hookfunction(game.HttpGet, function(self, url, state)
  5. if string.find(url, "https://pastebin.com/") then
  6. url = string.gsub(url, "pastebin", "pastebinp")
  7. return PastebinBypass(self, url, state)
  8. else
  9. return PastebinBypass(self, url, state)
  10. end
  11. end)
  12.  
  13. game:GetService("StarterGui"):SetCore("SendNotification", {
  14. Title = "Bypass Proxy Script";
  15. Text = "Bypass Proxy Ativado";
  16. Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
  17. })
  18. Duration = 7
  19.  
  20. local function notif(str, Du)
  21. game:FindService("StarterGui"):SetCore("SendNotification", {
  22. Title = "Shily IV",
  23. Text = str,
  24. Duration = du or 7
  25. })
  26. end
  27. notif('Shily IV: Executando Script...')
  28.  
  29. local function notif(str, Du)
  30. game:FindService("StarterGui"):SetCore("SendNotification", {
  31. Title = "Shily IV",
  32. Text = str,
  33. Duration = du or 7
  34. })
  35. end
  36. notif('Compatibilidade, Aprimorada')
  37.  
  38. -- Função para executar script Lua diretamente usando loadstring
  39. local function executarScriptLua(script)
  40. local sucesso, resultado = pcall(function()
  41. local func = loadstring(script)
  42. func()
  43. end)
  44.  
  45. if sucesso then
  46. print("Script Lua executado com sucesso!")
  47. else
  48. warn("Falha ao executar o script Lua: " .. resultado)
  49. end
  50. end
  51.  
  52. -- Exemplo de execução de um script
  53. local exampleScript = [[
  54. print("Este é um script de exemplo!")
  55. ]]
  56. executarScriptLua(exampleScript)
  57.  
  58. print("Script de exemplo executado com sucesso!")
  59.  
  60. -- Função para carregar módulos com require
  61. local function carregarModulo(nomeModulo)
  62. local sucesso, resultado = pcall(function()
  63. local modulo = require(game.ReplicatedStorage:WaitForChild(nomeModulo))
  64. print(modulo) -- Exemplo de interação com o módulo
  65. end)
  66.  
  67. if sucesso then
  68. print("Módulo carregado com sucesso!")
  69. else
  70. warn("Falha ao carregar o módulo: " .. resultado)
  71. end
  72. end
  73.  
  74. -- Função para detectar e executar scripts Lua e módulos no cliente
  75. local function detectarEExecutarScripts()
  76. -- Detectando scripts Lua em ReplicatedStorage (para LocalScript)
  77. for _, objeto in pairs(game.ReplicatedStorage:GetChildren()) do
  78. if objeto:IsA("Script") then
  79. print("Script Lua detectado: " .. objeto.Name)
  80.  
  81. -- Carrega o conteúdo do script Lua
  82. local scriptConteudo = objeto.Source
  83.  
  84. -- Executa o script com loadstring
  85. executarScriptLua(scriptConteudo)
  86. elseif objeto:IsA("ModuleScript") then
  87. print("Módulo detectado: " .. objeto.Name)
  88.  
  89. -- Carrega o módulo usando require
  90. carregarModulo(objeto.Name)
  91. end
  92. end
  93. end
  94.  
  95. -- Chama a função para detectar e executar os scripts e módulos
  96. detectarEExecutarScripts()
  97.  
  98. -- Atualiza nome da compatibilidade
  99. notif('Verifique Console F9!')
  100.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement