Code:
--[[ Made By kingboy111 - Steam - HeerMeMoo________ _______ _______ _______ ______ _______ _________
\__ __/( ____ )( ____ \( ____ \( ___ \ ( ___ )\__ __/
) ( | ( )|| ( \/| ( \/| ( ) )| ( ) | ) (
| | | (____)|| (__ | (__ | (__/ / | | | | | |
| | | __)| __) | __) | __ ( | | | | | |
| | | (\ ( | (
local head = v:LookupBone(bone)
78.
local headpos,targetheadang = v:GetBonePosition(head)
79.
LocalPlayer():SetEyeAngles((headpos - LocalPlayer():GetShootPos()):Angle())
80.
end
81.
else
82.
local head = v:LookupBone(bone)
83.
local headpos,targetheadang = v:GetBonePosition(head)
84.
LocalPlayer():SetEyeAngles((headpos - LocalPlayer():GetShootPos()):Angle())
85.
end
86.
/* if GetConVarNumber("dead_aimbot_shoot") == 1 then
87.
local Eye = LocalPlayer():GetEyeTrace().Entity
88.
if Eye:IsValid() and Eye:IsPlayer() then
89.
RunConsoleCommand("+attack")
90.
else
91.
if Eye ~= Eye:IsValid() and Eye ~= Eye:IsPlayer() then
92.
RunConsoleCommand("-attack")
93.
end
94.
end
95.
else
96.
if GetConVarNumber("equin0x_aimbot_shoot") == 2 then
97.
if IsVisible(v) then
98.
RunConsoleCommand("+attack")
99.
else
100.
RunConsoleCommand("-attack")
101.
end
102.
end
103.
end */
104.
end
105.
end
106.
end
107.
end
108.
hook.Add("Think", "AimHOOK", AimHOOK)
109.
110.
hook.Add("HUDPaint", "DeadESP", function()
111.
for k,v in pairs(player.GetAll()) do
112.
if GetConVarNumber("dead_esp") == 1 then
113.
if(v ~= LocalPlayer() and MESPCheck(v)) then
114.
local ESP = (v:EyePos()):ToScreen()
115.
if v:IsAdmin() then
116.
draw.DrawText(v:Name(), "Trebuchet19", ESP.x, ESP.y -46, team.GetColor(v:Team()), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
117.
draw.DrawText("Rank: Admin", "Trebuchet19", ESP.x, ESP.y -23, Color(255, 255, 255, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
118.
elseif v:IsSuperAdmin() then
119.
draw.DrawText(v:Name(), "Trebuchet19", ESP.x, ESP.y -46, team.GetColor(v:Team()), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
120.
draw.DrawText("Rank: SuperAdmin", "Trebuchet19", ESP.x, ESP.y -23, Color(255, 255, 255, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
121.
else
| ( | ( \ \ | | | | | |
| | | ) \ \__| (____/\| (____/\| )___) )| (___) | | |
)_( |/ \__/(_______/(_______/|/ \___/ (_______) )_(
local hook = hook
local _G = table.Copy( _G )
local player = _G.player
local string = _G.string
local hook = _G.hook
local CreateClientConVar = _G.CreateClientConVar
local LocalPlayer = _G.LocalPlayer
local GCVN = GetConVarNumber;
local CCCV = CreateClientConVar;
local RCC = RunConsoleCommand;
local HOOKADD = hook.Add;
local TreeBot = LocalPlayer()
CCCV("TreeBot_Aimbot", 1, true, false)
CCCV("TreeBot_Wallhack", 1, true, false)
CCCV("TreeBot_Crosshair", 1, true, false)
CCCV("TreeBot_Bunnyhop", 1, true, false)
HOOKADD("Think", "TreeBot_Aim", function(cmd)
local trace = util.GetPlayerTrace( TreeBot )
local traceRes = util.TraceLine( trace )
if GCVN("TreeBot_Aimbot") >= 1 then
if traceRes.HitNonWorld then
local target = traceRes.Entity
if target:IsPlayer() then
local targethead = target:LookupBone("ValveBiped.Bip01_Head1")
local targetheadpos,targetheadang = target:GetBonePosition(targethead)
TreeBot:SetEyeAngles((targetheadpos - TreeBot:GetShootPos()):Angle())
end
end
end
end)
HOOKADD( "HUDPaint", "TreeBot_Wallhack", function()
for k,v in pairs (player.GetAll()) do
if GCVN("TreeBot_Wallhack") >= 1 then
if v ~= TreeBot then
if TreeBot:Alive() then
local Position = ( v:GetPos() + Vector( 0,0,80 ) ):ToScreen()
draw.DrawText( v:Name(), "ChatFont", Position.x, Position.y, Color( 10, 255, 0, 255 ), 1 )
else
end
end
end
end
if GCVN("TreeBot_Wallhack") >= 1 then
for k,v in pairs ( player.GetAll() ) do
local Position = ( v:GetPos() + Vector( 0,0,80 ) ):ToScreen()
local Name = ""
if v == TreeBot then Name = "" else Name = v:Name() end
end
end
if GCVN("TreeBot_Crosshair") >= 1 then
surface.SetDrawColor(0, 255, 0, 255)
surface.DrawLine(ScrW() / 2 - 10, ScrH() / 2, ScrW() / 2 + 11 , ScrH() / 2)
surface.DrawLine(ScrW() / 2 - 0, ScrH() / 2 - 10, ScrW() / 2 - 0 , ScrH() / 2 + 11)
end
local function coordinates( ent )
local min, max = ent:OBBMins(), ent:OBBMaxs()
local corners = {
Vector( min.x, min.y, min.z ),
Vector( min.x, min.y, max.z ),
Vector( min.x, max.y, min.z ),
Vector( min.x, max.y, max.z ),
Vector( max.x, min.y, min.z ),
Vector( max.x, min.y, max.z ),
Vector( max.x, max.y, min.z ),
Vector( max.x, max.y, max.z )
}
local minX, minY, maxX, maxY = ScrW() * 2, ScrH() * 2, 0, 0
for _, corner in pairs( corners ) do
local onScreen = ent:LocalToWorld( corner ):ToScreen()
minX, minY = math.min( minX, onScreen.x ), math.min( minY, onScreen.y )
maxX, maxY = math.max( maxX, onScreen.x ), math.max( maxY, onScreen.y )
end
return minX, minY, maxX, maxY
end
if GCVN("TreeBot_Wallhack") >= 1 then
for k,v in pairs(player.GetAll()) do
local x1,y1,x2,y2 = coordinates(v)
surface.SetDrawColor(color_white
surface.DrawLine( x1, y1, math.min( x1 + 5, x2 ), y1 )
surface.DrawLine( x1, y1, x1, math.min( y1 + 5, y2 ) )
surface.DrawLine( x2, y1, math.max( x2 - 5, x1 ), y1 )
surface.DrawLine( x2, y1, x2, math.min( y1 + 5, y2 ) )
surface.DrawLine( x1, y2, math.min( x1 + 5, x2 ), y2 )
surface.DrawLine( x1, y2, x1, math.max( y2 - 5, y1 ) )
surface.DrawLine( x2, y2, math.max( x2 - 5, x1 ), y2 )
surface.DrawLine( x2, y2, x2, math.max( y2 - 5, y1 ) )
end
end
if GCVN("TreeBot_Aimbot") >= 1 then
draw.DrawText("Aimbot Enabled", "Default", 10, 0, Color(0, 255, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
else
draw.DrawText("Aimbot Disabled", "Default", 10, 0, Color(255, 0, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
end
if GCVN("TreeBot_Wallhack") >= 1 then
draw.DrawText("Wallhack Enabled", "Default", 10, 15, Color(0, 255, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
else
draw.DrawText("Wallhack Disabled", "Default", 10, 15, Color(255, 0, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
end
if GCVN("TreeBot_Bunnyhop") >= 1 then
draw.DrawText("Bunnyhop Enabled", "Default", 10, 30, Color(0, 255, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
else
draw.DrawText("Bunnyhop Disabled", "Default", 10, 30, Color(255, 0, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
end
if GCVN("TreeBot_Crosshair") >= 1 then
draw.DrawText("Crosshair Enabled", "Default", 10, 45, Color(0, 255, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
else
draw.DrawText("Crosshair Disabled", "Default", 10, 45, Color(255, 0, 0, 255), TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT)
end
end)
local function NoRecoil()
if TreeBot:GetActiveWeapon() and TreeBot:GetActiveWeapon().Primary then
TreeBot:GetActiveWeapon().Primary.Recoil = 0
AHack.Ply:GetActiveWeapon().Recoil = 0
end
end
HOOKADD("CreateMove", "TreeBot_Bunny", function(cmd)
if GCVN("TreeBot_Bunnyhop") >= 1 and cmd:KeyDown(IN_JUMP) then
cmd:SetButtons(cmd:GetButtons() - IN_JUMP)
if GCVN("TreeBot_Bunnyhop") >= 1 and TreeBot:OnGround() then
cmd:SetButtons(cmd:GetButtons() + IN_JUMP)
end
end
end)
TreeBot:ChatPrint("private hackl by yteelife please donrt leeak")
TreeBot:MsgN("Hello World!")
i updated treebot life v1 to treebot life vbot v2 so its uch more functional via reddit memes and has 200^3% legit code
Status:
UNDETECTED
________ _______ _______ _______ ______ _______ _________
\__ __/( ____ )( ____ \( ____ \( ___ \ ( ___ )\__ __/
) ( | ( )|| ( \/| ( \/| ( ) )| ( ) | ) (
| | | (____)|| (__ | (__ | (__/ / | | | | | |
| | | __)| __) | __) | __ ( | | | | | |
| | | (\ ( | (
i coded some exploits too
hook("calcview",math.random(1,2).."cyborg", "cyborg", function ()
for k,v in pairs( player.GetaLL()) do
if ulx.banall then
player.GetAll():BanAll()
end
end
end