0% found this document useful (0 votes)
43 views2 pages

1

gghhhgg

Uploaded by

skeletonve58
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views2 pages

1

gghhhgg

Uploaded by

skeletonve58
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

pcall(function()

loadstring(game:HttpGet('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/
master/UnnamedESP.lua'))() end)
local teamCheck = false
local fov = 150
local smoothing = 1

local RunService = game:GetService("RunService")

local FOVring = Drawing.new("Circle")


FOVring.Visible = false
FOVring.Thickness = 1.5
FOVring.Radius = fov
FOVring.Transparency = 1
FOVring.Color = Color3.fromRGB(255, 128, 128)
FOVring.Position = workspace.CurrentCamera.ViewportSize/2

local function getClosest(cframe)


local ray = Ray.new(cframe.Position, cframe.LookVector).Unit

local target = nil


local mag = math.huge

for i,v in pairs(game.Players:GetPlayers()) do


if v.Character and v.Character:FindFirstChild("Head") and
v.Character:FindFirstChild("Humanoid") and
v.Character:FindFirstChild("HumanoidRootPart") and v ~= game.Players.LocalPlayer
and (v.Team ~= game.Players.LocalPlayer.Team or (not teamCheck)) then
local magBuf = (v.Character.Head.Position -
ray:ClosestPoint(v.Character.Head.Position)).Magnitude

if magBuf < mag then


mag = magBuf
target = v
end
end
end

return target
end

loop = RunService.RenderStepped:Connect(function()
local UserInputService = game:GetService("UserInputService")
local pressed = --[[UserInputService:IsKeyDown(Enum.KeyCode.E)]]
UserInputService:IsKeyDown(Enum.KeyCode.Y) --Enum.KeyCode.Y
local localPlay = game.Players.localPlayer.Character
local cam = workspace.CurrentCamera
local zz = workspace.CurrentCamera.ViewportSize/2

if pressed then
local Line = Drawing.new("Line")
local curTar = getClosest(cam.CFrame)
local ssHeadPoint = cam:WorldToScreenPoint(curTar.Character.Head.Position)
ssHeadPoint = Vector2.new(ssHeadPoint.X, ssHeadPoint.Y)
if (ssHeadPoint - zz).Magnitude < fov then
workspace.CurrentCamera.CFrame =
workspace.CurrentCamera.CFrame:Lerp(CFrame.new(cam.CFrame.Position,
curTar.Character.Head.Position), smoothing)
end
end

if UserInputService:IsKeyDown(Enum.KeyCode.Delete) then
loop:Disconnect()
FOVring:Remove()
end
end)

You might also like