Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 433 Bytes

File metadata and controls

17 lines (15 loc) · 433 Bytes

Chicken ESP

Author: @elleqt

Name: Chicken esp

Description: Render circle around chickens

Cheat.RegisterCallback("draw", function()
    local entity = EntityList.GetEntitiesByName("CChicken")
    for i = 1, #entity do
        local position = entity[i]:GetProp("DT_BaseEntity", "m_vecOrigin")
        Render.Circle3D(position, 58, 10.0, Color.new(1.0, 1.0, 1.0))
    end
end)