HHLExploits

Untitled

Apr 23rd, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. local function removeother(instance)
  2. for i,v in pairs(instance:GetChildren()) do
  3. if v.Name == "ESP" then
  4. v:Destroy()
  5. end
  6. removeother(v)
  7. end
  8. end
  9.  
  10. function show(v)
  11.  
  12. local epic = Instance.new("Part")
  13. epic.Parent = v
  14. epic.Name = "parttrace"
  15. epic.CFrame = v.CFrame
  16. epic.Size = Vector3.new(0.2,0.2,0.2)
  17. epic.Anchored = true
  18. epic.Transparency = 1
  19.  
  20. local billgui = Instance.new('BillboardGui', epic)
  21. local textlab = Instance.new('TextLabel', billgui)
  22.  
  23. billgui.Name = "ESP"
  24. billgui.Adornee = epic
  25. billgui.AlwaysOnTop = true
  26. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  27. billgui.Size = UDim2.new(0, 5, 0, 5)
  28.  
  29. textlab.Name = 'CASH'
  30. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  31. textlab.BackgroundTransparency = 1
  32. textlab.BorderSizePixel = 0
  33. textlab.Position = UDim2.new(0, 0, 0, -40)
  34. textlab.Size = UDim2.new(1, 0, 10, 0)
  35. textlab.Visible = true
  36. textlab.ZIndex = 10
  37. textlab.Font = 'ArialBold'
  38. textlab.FontSize = 'Size14'
  39. textlab.Text = "CASH"
  40. textlab.TextColor = BrickColor.new('Bright red')
  41. textlab.TextStrokeColor3 = Color3.fromRGB(255,255,255)
  42. textlab.TextStrokeTransparency = 0.6
  43. end
  44.  
  45. local function tracecash(instance)
  46. for i,v in pairs(instance:GetChildren()) do
  47. if v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" then
  48. removeother(v.Parent)
  49. show(v)
  50. end
  51. tracecash(v)
  52. end
  53. end
  54.  
  55. for i,v in pairs(game.Workspace:GetChildren()) do
  56. if v.Name == "RandomSpawner" then
  57. if v:FindFirstChild("Model") then
  58. v.Model.ChildAdded:Connect(function(child)
  59. tracecash(child)
  60. end)
  61. end
  62. v.ChildAdded:Connect(function(child)
  63. tracecash(child)
  64. end)
  65. end
  66. end
  67.  
  68. game.Workspace.ChildAdded:Connect(function(child)
  69. if child.Name == "RandomSpawner" then
  70. repeat wait() until child.Model
  71. tracecash(child)
  72. end
  73. end)
  74.  
  75. tracecash(game.Workspace)
Add Comment
Please, Sign In to add comment