Frontlines Script | ESP – pa1n


Created by e621

Features:

local playersFolder = Instance.new("Folder",game:GetService("CoreGui"))--I refuse to protect the folder
local function esp(player)
   if player and not player:FindFirstChild("friendly_marker") then
       local playerEsp = Instance.new("Highlight",playersFolder)
       playerEsp.Adornee = player
       player.AncestryChanged:Connect(function()
           playerEsp:Destroy()
       end)
   end
end
for i,v in next,workspace:GetChildren() do
   if v:IsA("Model") and v.Name=="r15_rig" then
       esp(v)
   end
end
workspace.ChildAdded:Connect(function(child)
   task.wait()
   if child:IsA("Model") and child.Name=="r15_rig" then
       esp(child)
   end
end)

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!