How lucky we were recently Phantom Forces Script developers, today a new script released by Phantom Forces with Highlight ESP features, Chams. ESP - used as an opportunity to track your enemy over any obstacle or obstacle on the map. Find out where your enemy is now and what weapon is waiting for you. The script is very good, it can also change the settings if you want. Download this free script from our site, thanks to it you can be one of the best in this good roblox game.

Features Of Phantom Forces Script:
Highlight ESP
Script:
-- Settings --
local settings = {
fillcolor = Color3.fromRGB(255, 255, 255);
filltransparency = .75;
outlinecolor = Color3.fromRGB(255, 255, 255);
outlinetransparency = 0;
}
-- Script --
local plr = game:service'Players'.LocalPlayer
local highlights = Instance.new('Folder', game:service'CoreGui')
local function addhighlight(object)
local highlight = Instance.new('Highlight', highlights)
highlight.Adornee = object
highlight.FillColor = settings.fillcolor
highlight.FillTransparency = settings.filltransparency
highlight.OutlineColor = settings.outlinecolor
highlight.OutlineTransparency = settings.outlinetransparency
highlight.Adornee.Changed:Connect(function()
if not highlight.Adornee or not highlight.Adornee.Parent then
highlight:Destroy()
end
end)
return highlight
end
local function addtoplayer(object)
if object:IsA'Model' and object.Name == 'Player' and object.Parent.Name ~= tostring(plr.TeamColor) then
addhighlight(object)
end
end
for i,v in pairs(workspace.Players:GetDescendants()) do
addtoplayer(v)
end
workspace.Players.DescendantAdded:Connect(function(v)
addtoplayer(v)
end)