What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Anomaly ESP Open Source

Version / Update: v1.0.0
Download / Script Link
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({
Name = "l10 shawarma kisoki",
Icon = 0,
LoadingTitle = "l10 67",
LoadingSubtitle = "by l10",
ShowText = "67",
Theme = "Default",

ToggleUIKeybind = "K",

DisableRayfieldPrompts = false,
DisableBuildWarnings = false,
})

local Tab = Window:CreateTab("Tab Example", "rewind")

local AnomalyESP = Tab:CreateToggle({
Name = "Anomaly ESP",
CurrentValue = false,
Flag = "AnomalyESP1",
Callback = function(Value)

end,
})

local services = {
RunService = game:GetService("RunService")
}

local currenthumanoids = workspace:WaitForChild("Hum")

services.RunService.RenderStepped:Connect(function()
for _, humanoid in pairs(currenthumanoids:GetChildren()) do
local highlight = humanoid:FindFirstChild("Highlight")
if not highlight then
highlight = Instance.new("Highlight")
highlight.Parent = humanoid
highlight.DepthMode = Enum.HighlightDepthMode.Occluded
highlight.FillTransparency = 0.9
highlight.OutlineTransparency = 0.9
highlight.Enabled = AnomalyESP.CurrentValue
end

if humanoid:GetAttribute("IsAnomaly") then
highlight.FillColor = Color3.fromRGB(255, 0, 0)
else
highlight.FillColor = Color3.fromRGB(0, 255, 0)
end

highlight.Enabled = AnomalyESP.CurrentValue
end
end)
[ View More ]
12ce838d-b32b-4848-8515-b54e51c1a140.webp


-> Anomaly ESP-> Rayfield UI Library
 
Back
Top