MADE BY darkhalo#2022
FEATURE:
- ESP
SCRIPT:
while wait(1) do
if workspace:FindFirstChild("Rake") then
if not workspace.Rake:FindFirstChild("Highlight") then
local rakeEsp = Instance.new("Highlight")
rakeEsp.Parent = workspace.Rake
rakeEsp.FillTransparency = 1
end
end
while wait(1) do
if workspace:FindFirstChild("Rake") then
local rakeEsp = workspace.Rake.Highlight
local distance = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - workspace.Rake.HumanoidRootPart.Position).Magnitude
if distance < 40 then
rakeEsp.OutlineColor = Color3.new(255, 0, 0)
else
rakeEsp.OutlineColor = Color3.new(0, 251, 255)
end
end
end
end