SigmaBoy456

My best Tools for Making Hack on roblox Game

Jun 2nd, 2024
324
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.51 KB | None | 1 0
  1. --[[
  2.     best Reworked remote spy
  3. ]]
  4. loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/RS/main/SimpleSpyMobile"))()
  5.  
  6. --remote PC
  7. loadstring(game:HttpGet("https://pastebin.com/raw/bCghX33W", true))()
  8.  
  9. --Script obfuscater
  10. script = [[
  11.  
  12. print(":)") -- PUT YOUR SCRIPT THAT YOU WANT OBFUSCATED IN BETWEEN THE [[ ]]
  13. ]]
  14.  
  15. loadstring(game:HttpGet("https://pastebin.com/raw/rd2yucXG"))()
  16.  
  17. --script viewer
  18. local Iris = loadstring(game:HttpGet("https://raw.githubusercontent.com/x0581/Iris-Exploit-Bundle/main/bundle.lua"))().Init()
  19. local PropertyAPIDump = game.HttpService:JSONDecode(game:HttpGet("https://anaminus.github.io/rbx/json/api/latest.json"))
  20.  
  21. local function GetPropertiesForInstance(Instance)
  22.     local Properties = {}
  23.     for i,v in next, PropertyAPIDump do
  24.         if v.Class == Instance.ClassName and v.type == "Property" then
  25.             pcall(function()
  26.                 Properties[v.Name] = {
  27.                     Value = Instance[v.Name],
  28.                     Type = v.ValueType,
  29.                 }
  30.             end)
  31.         end
  32.     end
  33.     return Properties
  34. end
  35.  
  36. local ScriptContent = [[]]
  37. local SelectedInstance = nil
  38. local Properties = {}
  39.  
  40. local function CrawlInstances(Inst)
  41.     for _, Instance in next, Inst:GetChildren() do
  42.         local InstTree = Iris.Tree({Instance.Name})
  43.  
  44.         Iris.SameLine() do
  45.             if Instance:IsA("LocalScript") or Instance:IsA("ModuleScript") then
  46.                 if Iris.SmallButton({"View Script"}).clicked then
  47.                     ScriptContent = decompile(Instance)
  48.                 end
  49.             end
  50.             if Iris.SmallButton({"View Properties"}).clicked then
  51.                 SelectedInstance = Instance
  52.                 Properties = GetPropertiesForInstance(Instance)
  53.             end
  54.             Iris.End()
  55.         end
  56.  
  57.         if InstTree.state.isUncollapsed.value then
  58.             CrawlInstances(Instance)
  59.         end
  60.         Iris.End()
  61.     end
  62. end
  63.  
  64. Iris:Connect(function()
  65.     local InstanceViewer = Iris.State(false)
  66.     local PropertyViewer = Iris.State(false)
  67.     local ScriptViewer = Iris.State(false)
  68.  
  69.     Iris.Window({"MikeExplorer Settings", [Iris.Args.Window.NoResize] = true}, {size = Iris.State(Vector2.new(400, 75)), position = Iris.State(Vector2.new(0, 0))}) do
  70.         Iris.SameLine() do
  71.             Iris.Checkbox({"Instance Viewer"}, {isChecked = InstanceViewer})
  72.             Iris.Checkbox({"Property Viewer"}, {isChecked = PropertyViewer})
  73.             Iris.Checkbox({"Script Viewer"}, {isChecked = ScriptViewer})
  74.             Iris.End()
  75.         end
  76.         Iris.End()
  77.     end
  78.  
  79.     if InstanceViewer.value then
  80.         Iris.Window({"MikeExplorer Instance Viewer", [Iris.Args.Window.NoClose] = true}, {size = Iris.State(Vector2.new(400, 300)), position = Iris.State(Vector2.new(0, 75))}) do
  81.             CrawlInstances(game)
  82.             Iris.End()
  83.         end
  84.     end
  85.  
  86.     if PropertyViewer.value then
  87.         Iris.Window({"MikeExplorer Property Viewer", [Iris.Args.Window.NoClose] = true}, {size = Iris.State(Vector2.new(400, 200)), position = Iris.State(Vector2.new(0, 375))}) do
  88.             Iris.Text({("Viewing Properties For: %s"):format(
  89.                 SelectedInstance and SelectedInstance:GetFullName() or "UNKNOWN INSTNACE"
  90.             )})
  91.             Iris.Table({3, [Iris.Args.Table.RowBg] = true}) do
  92.                 for PropertyName, PropDetails in next, Properties do
  93.                     Iris.Text({PropertyName})
  94.                     Iris.NextColumn()
  95.                     Iris.Text({PropDetails.Type})
  96.                     Iris.NextColumn()
  97.                     Iris.Text({tostring(PropDetails.Value)})
  98.                     Iris.NextColumn()
  99.                 end
  100.                 Iris.End()
  101.             end
  102.         end
  103.         Iris.End()
  104.     end
  105.  
  106.     if ScriptViewer.value then
  107.         Iris.Window({"MikeExplorer Script Viewer", [Iris.Args.Window.NoClose] = true}, {size = Iris.State(Vector2.new(600, 575)), position = Iris.State(Vector2.new(400, 0))}) do
  108.             if Iris.Button({"Copy To Clipboard"}).clicked then
  109.                 setclipboard(ScriptContent)
  110.             end
  111.             local Lines = ScriptContent:split("\n")
  112.             for I, Line in next, Lines do
  113.                 Iris.Text({Line})
  114.             end
  115.             Iris.End()
  116.         end
  117.     end
  118. end)
  119.  
  120. --DEX EXPLORER FOR MOBILE
  121.  
  122. loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/BypassedDarkDexV3.lua", true))()
  123.  
  124. --Actually use Dex explorer v4 on infinite yield for PC is better
Advertisement
Add Comment
Please, Sign In to add comment