Advertisement
ImRealLenny

Universal ESP - Undetectable on most games

Jul 27th, 2022 (edited)
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.11 KB | None | 0 0
  1. local EZE_S_P = Instance.new("BillboardGui")
  2. local TargetName = Instance.new("TextLabel")
  3. local Point = Instance.new("Frame")
  4. local UICorner = Instance.new("UICorner")
  5. local HealthbarBg = Instance.new("Frame")
  6. local Frame = Instance.new("Frame")
  7.  
  8. --Properties:
  9.  
  10. EZE_S_P.Name = "EZE_S_P"
  11. EZE_S_P.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. EZE_S_P.Active = true
  13. EZE_S_P.AlwaysOnTop = true
  14. EZE_S_P.LightInfluence = 1.000
  15. EZE_S_P.Size = UDim2.new(3, 0, 3, 0)
  16.  
  17. TargetName.Name = "TargetName"
  18. TargetName.Parent = EZE_S_P
  19. TargetName.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. TargetName.BackgroundTransparency = 1.000
  21. TargetName.Size = UDim2.new(1, 0, 0.25, 0)
  22. TargetName.Font = Enum.Font.Gotham
  23. TargetName.Text = "{tar_name}"
  24. TargetName.TextColor3 = Color3.fromRGB(255, 255, 255)
  25. TargetName.TextScaled = true
  26. TargetName.TextSize = 14.000
  27. TargetName.TextStrokeTransparency = 0.500
  28. TargetName.TextWrapped = true
  29.  
  30. Point.Name = "Point"
  31. Point.Parent = EZE_S_P
  32. Point.AnchorPoint = Vector2.new(0.5, 0.5)
  33. Point.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  34. Point.Position = UDim2.new(0.5, 0, 0.5, 0)
  35. Point.Size = UDim2.new(0.330000013, 0, 0.330000013, 0)
  36.  
  37. UICorner.CornerRadius = UDim.new(1, 0)
  38. UICorner.Parent = Point
  39.  
  40. HealthbarBg.Name = "HealthbarBg"
  41. HealthbarBg.Parent = EZE_S_P
  42. HealthbarBg.AnchorPoint = Vector2.new(0.5, 1)
  43. HealthbarBg.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  44. HealthbarBg.BorderSizePixel = 0
  45. HealthbarBg.Position = UDim2.new(0.5, 0, 0.800000012, 0)
  46. HealthbarBg.Size = UDim2.new(1, 0, 0.100000001, 0)
  47.  
  48. Frame.Parent = HealthbarBg
  49. Frame.BackgroundColor3 = Color3.fromRGB(12, 255, 0)
  50. Frame.BorderSizePixel = 0
  51. Frame.Size = UDim2.new(0.5, 0, 1, 0)
  52.  
  53. game:GetService('RunService').RenderStepped:Connect(function()
  54.     for i, v in ipairs(game.Players:GetPlayers()) do
  55.         if v:IsA('Player') then
  56.             if v ~= game.Players.LocalPlayer then
  57.                 local char = v.Character
  58.                 if char then
  59.                     if char.PrimaryPart then
  60.                         if char.PrimaryPart:FindFirstChild(EZE_S_P.Name) then
  61.                             local hum = char:WaitForChild('Humanoid')
  62.                             local ezEspFrame = char.PrimaryPart:FindFirstChild(EZE_S_P.Name)
  63.                             ezEspFrame.TargetName.Text = v.Name
  64.                             ezEspFrame.HealthbarBg.Frame.Size = UDim2.new(hum.Health / hum.MaxHealth, 0, 1, 0)
  65.                         else
  66.                             local hum = char:WaitForChild('Humanoid')
  67.                             local ezEspFrame = EZE_S_P:Clone()
  68.                             ezEspFrame.Parent = char.PrimaryPart
  69.                             ezEspFrame.TargetName.Text = v.Name
  70.                             ezEspFrame.HealthbarBg.Frame.Size = UDim2.new(hum.Health / hum.MaxHealth, 0, 1, 0)
  71.                         end
  72.                     end
  73.                 end
  74.             end
  75.         end
  76.     end
  77. end)
  78.  
  79. --[[
  80. Cheat was tested and is 100% undetectable on:
  81. - Criminality - Although can be reported
  82. - Jailbreak - Although can be reported
  83. - Town - Although can be reported
  84. - Blackhawk Rescue Mission 5
  85.  
  86. Cheat was injected (tested) and is 100% working on:
  87. - KRNL
  88. - Synapse X
  89.  
  90. For sake of being undetected, it's recommended to use loadstring, although copy/paste method works aswell.
  91. Just copy this line of code and paste into injector:
  92. --
  93. loadstring("https://pastebin.com/raw/h8NczqzW", true)
  94. --
  95.  
  96. *Data is valid as for 27th July 2022.
  97. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement