Advertisement
kingmohamed

esp

Jan 19th, 2025 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.88 KB | None | 0 0
  1. local colourTable = {
  2.     Green = Color3.fromRGB(0, 255, 0),
  3.     Blue = Color3.fromRGB(0, 0, 255),
  4.     Red = Color3.fromRGB(255, 0, 0),
  5.     Yellow = Color3.fromRGB(255, 255, 0),
  6.     Orange = Color3.fromRGB(255, 165, 0),
  7.     Purple = Color3.fromRGB(128, 0, 128)
  8. }
  9. local colourChosen = colourTable["Red"] -- Set your preferred colour here
  10. _G.ESPToggle = false -- Variable to toggle ESP
  11.  
  12. -- Services and player references
  13. local Players = game:GetService("Players")
  14. local LocalPlayer = Players.LocalPlayer
  15. local RunService = game:GetService("RunService")
  16. local UserInputService = game:GetService("UserInputService")
  17. local Workspace = game:GetService("Workspace")
  18.  
  19. -- Screen GUI setup
  20. local screenGui = Instance.new("ScreenGui")
  21. screenGui.Name = "ESPToggleGui"
  22. screenGui.Parent = game.CoreGui
  23.  
  24. local mainFrame = Instance.new("Frame")
  25. mainFrame.Name = "MainFrame"
  26. mainFrame.Size = UDim2.new(1, 0, 1, 0)
  27. mainFrame.BackgroundTransparency = 1
  28. mainFrame.Parent = screenGui
  29.  
  30. local toggleButton = Instance.new("TextButton")
  31. toggleButton.Name = "ToggleButton"
  32. toggleButton.Size = UDim2.new(0, 200, 0, 50)
  33. toggleButton.Position = UDim2.new(0.5, -100, 0.5, -25)
  34. toggleButton.Text = "Toggle ESP"
  35. toggleButton.Parent = mainFrame
  36.  
  37. local function getCharacter(player)
  38.     return player.Character or Workspace:FindFirstChild(player.Name)
  39. end
  40.  
  41. -- Checks if a player is on the same team as the local player
  42. local function isEnemy(player)
  43.     -- If the player has no team or LocalPlayer has no team, consider them as enemies (for FFA).
  44.     if not player.Team or not LocalPlayer.Team then return true end
  45.     return player.Team ~= LocalPlayer.Team -- True if they are on a different team
  46. end
  47.  
  48. local function addHighlightToCharacter(player, character)
  49.     if player == LocalPlayer or not isEnemy(player) then return end
  50.     local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
  51.     if humanoidRootPart and not humanoidRootPart:FindFirstChild("Highlight") then
  52.         local highlightClone = Instance.new("Highlight")
  53.         highlightClone.Name = "Highlight"
  54.         highlightClone.Adornee = character
  55.         highlightClone.Parent = humanoidRootPart
  56.         highlightClone.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  57.         highlightClone.FillColor = colourChosen
  58.         highlightClone.OutlineColor = Color3.fromRGB(255, 255, 255)
  59.         highlightClone.FillTransparency = 0.5
  60.     end
  61. end
  62.  
  63. local function removeHighlightFromCharacter(character)
  64.     if not character then return end
  65.     local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
  66.     if humanoidRootPart then
  67.         for _, obj in ipairs(humanoidRootPart:GetChildren()) do
  68.             if obj:IsA("Highlight") then
  69.                 obj:Destroy()
  70.             end
  71.         end
  72.     end
  73. end
  74.  
  75. local function updateHighlights()
  76.     for _, player in ipairs(Players:GetPlayers()) do
  77.         local character = getCharacter(player)
  78.         if character then
  79.             if _G.ESPToggle then
  80.                 addHighlightToCharacter(player, character)
  81.             else
  82.                 removeHighlightFromCharacter(character)
  83.             end
  84.         end
  85.     end
  86. end
  87.  
  88. RunService.RenderStepped:Connect(updateHighlights)
  89.  
  90. Players.PlayerAdded:Connect(function(player)
  91.     player.CharacterAdded:Connect(function(character)
  92.         if _G.ESPToggle then
  93.             addHighlightToCharacter(player, character)
  94.         end
  95.     end)
  96. end)
  97.  
  98. Players.PlayerRemoving:Connect(function(playerRemoved)
  99.     removeHighlightFromCharacter(playerRemoved.Character)
  100. end)
  101.  
  102. toggleButton.MouseButton1Click:Connect(function()
  103.     _G.ESPToggle = not _G.ESPToggle
  104.     toggleButton.Text = _G.ESPToggle and "ESP ON" or "ESP OFF"
  105. end)
  106.  
  107. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  108.     if input.KeyCode == Enum.KeyCode.H and not gameProcessed then
  109.         mainFrame.Visible = not mainFrame.Visible
  110.     end
  111. end)
  112.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement