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)