Advertisement
CroClex

awwadaw

Nov 8th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local remotespy = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local top = Instance.new("Frame")
  7. local title = Instance.new("TextLabel")
  8. local mini = Instance.new("TextButton")
  9. local container = Instance.new("ScrollingFrame")
  10. local UIListLayout = Instance.new("UIListLayout")
  11. --Properties:
  12. remotespy.Name = "remotespy"
  13. remotespy.Parent = game.CoreGui
  14. remotespy.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. main.Name = "main"
  17. main.Parent = remotespy
  18. main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  19. main.BorderColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  20. main.BorderSizePixel = 0
  21. main.Position = UDim2.new(0.255832672, 0, 0.282828271, 0)
  22. main.Size = UDim2.new(0, 460, 0, 293)
  23.  
  24. top.Name = "top"
  25. top.Parent = main
  26. top.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  27. top.BorderSizePixel = 0
  28. top.Size = UDim2.new(0, 460, 0, 26)
  29.  
  30. title.Name = "title"
  31. title.Parent = top
  32. title.BackgroundColor3 = Color3.new(1, 1, 1)
  33. title.BackgroundTransparency = 1
  34. title.Size = UDim2.new(0, 200, 0, 28)
  35. title.Font = Enum.Font.SourceSansSemibold
  36. title.Text = "JailBreak Function Spy"
  37. title.TextColor3 = Color3.new(1, 1, 1)
  38. title.TextSize = 16
  39. title.TextXAlignment = Enum.TextXAlignment.Left
  40.  
  41. mini.Name = "mini"
  42. mini.Parent = top
  43. mini.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  44. mini.BorderSizePixel = 0
  45. mini.Position = UDim2.new(0.930851996, 0, 0.107142858, 0)
  46. mini.Size = UDim2.new(0, 31, 0, 22)
  47. mini.Font = Enum.Font.SourceSans
  48. mini.Text = "-"
  49. mini.TextColor3 = Color3.new(1, 1, 1)
  50. mini.TextScaled = true
  51. mini.TextSize = 14
  52. mini.TextWrapped = true
  53.  
  54. container.Name = "container"
  55. container.Parent = main
  56. container.BackgroundColor3 = Color3.new(1, 1, 1)
  57. container.BackgroundTransparency = 1
  58. container.BorderSizePixel = 0
  59. container.Position = UDim2.new(0, 0, 0.0903226063, 0)
  60. container.Size = UDim2.new(0, 460, 0, 266)
  61. container.CanvasSize = UDim2.new(0, 0, 0, 0)
  62.  
  63. UIListLayout.Parent = container
  64. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  65. -- Scripts:
  66.  
  67. main.Active = true
  68. main.Draggable = true
  69.  
  70.  
  71.  
  72. function output(msg)
  73. local text = Instance.new("TextLabel", container)
  74. text.BackgroundColor3 = Color3.new(1, 1, 1)
  75. text.BackgroundTransparency = 1
  76. text.Size = UDim2.new(0, 460, 0, 23)
  77. text.Font = Enum.Font.SourceSansSemibold
  78. text.Text = msg
  79. text.TextColor3 = Color3.new(1, 1, 1)
  80. text.TextSize = 18
  81. text.TextXAlignment = Enum.TextXAlignment.Left
  82. end
  83.  
  84.  
  85. local editor = loadstring(game:HttpGet("https://pastebin.com/raw/zbJgBkU1", true))()
  86.  
  87. local client = {}
  88. client.network = editor:getgcindex("FireServer")
  89. local ol;
  90. ol = hookfunction(client.network.FireServer, function(self,...)
  91. local args = {...}
  92. if args[1] ~= "s5l866gl" then
  93. for i,v in pairs(args) do
  94. output(i,v)
  95. if typeof(v) == "table" then
  96. for i2,v2 in pairs(v) do
  97. output("-" .. i2,v2)
  98. end
  99. end
  100. end
  101. end
  102. return ol(self,...)
  103. end)
  104. warn("Listening for Remotes/Functions!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement