Results 1 to 5 of 5
  1. #1
    14126's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    3

    pHomemade Esp (Skeleton and head)

    Code:
    ply = LocalPlayer()
    hook.Add('HUDPaint','SkeletonEsp', function()
    	for i,v in pairs(player.GetAll()) do
    	if v == ply then
    	else
    		surface.SetDrawColor( 255, 0, 0, 255 )
    		rshoulder = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_R_UpperArm') ):ToScreen()
    		lshoulder = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_L_UpperArm') ):ToScreen()
    		relbow = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_R_Forearm') ):ToScreen()
    		lelbow = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_L_Forearm') ):ToScreen()
    		lwrist = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_L_Hand') ):ToScreen()
    		rwrist = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_R_Hand') ):ToScreen()
    		head = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_Head1') ):ToScreen()
    		pelvis = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_Pelvis') ):ToScreen()
    		rthigh = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_R_Calf') ):ToScreen()
    		lthigh = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_L_Calf') ):ToScreen()
    		rfoot = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_R_Foot') ):ToScreen()
    		lfoot = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_L_Foot') ):ToScreen()
    		surface.DrawLine(rshoulder.x,rshoulder.y,lshoulder.x,lshoulder.y)
    		surface.DrawLine(rshoulder.x,rshoulder.y,relbow.x,relbow.y)
    		surface.DrawLine(lshoulder.x,lshoulder.y,lelbow.x,lelbow.y)
    		surface.DrawLine(relbow.x,relbow.y,rwrist.x,rwrist.y)
    		surface.DrawLine(lelbow.x,lelbow.y,lwrist.x,lwrist.y)
    		surface.DrawLine(head.x,head.y,pelvis.x,pelvis.y)
    		surface.DrawLine(pelvis.x,pelvis.y,rthigh.x,rthigh.y)
    		surface.DrawLine(pelvis.x,pelvis.y,lthigh.x,lthigh.y)
    		surface.DrawLine(rthigh.x,rthigh.y,rfoot.x,rfoot.y)
    		surface.DrawLine(lthigh.x,lthigh.y,lfoot.x,lfoot.y)
    		end
    	end
    end)
    p Skeleton esp

    Code:
    ply = LocalPlayer()
    hook.Add('HUDPaint','Esp', function()
    	for i,v in pairs(player.GetAll()) do
    	if v == ply then
    	else
    	size = 1
    		screenpos = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_Head1') ):ToScreen()
    		if ply:GetPos():Distance(v:GetPos()) < 2000 then
    			size = 15-(ply:GetPos():Distance(v:GetPos()))/150
    			elseif ply:GetPos():Distance(v:GetPos()) < 2000 then
    			size = 2
    		end
    		surface.DrawCircle(screenpos.x,screenpos.y,size or 0,255,0,0,255)
    		end
    	end
    end)
    P circle on head esp

    Code:
    ply = LocalPlayer()
    hook.Add('HUDPaint','Tracer', function()
    	for i,v in pairs(player.GetAll()) do
    	if v == ply then
    	else
    		surface.SetDrawColor( 255, 100, 100, 255 )
    		pstart = v:GetBonePosition( v:LookupBone('ValveBiped.Bip01_Head1') ):ToScreen()
    		pend = util.TraceLine(util.GetPlayerTrace(v)).HitPos:ToScreen()
    		surface.DrawLine(pstart.x,pstart.y,pend.x,pend.y)
    		end
    	end
    end)
    p player tracers
    Last edited by 14126; 01-21-2018 at 06:11 AM.

  2. #2
    eth0s's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    1,887
    Please stop.

  3. The Following User Says Thank You to eth0s For This Useful Post:

    14126 (01-21-2018)

  4. #3
    _LYNX's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Location
    North Korea
    Posts
    47
    Reputation
    10
    Thanks
    197
    My Mood
    Lurking
    *play OOF.mp3*

  5. #4
    Bartender's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Posts
    124
    Reputation
    10
    Thanks
    537
    LOOK
    leet Lua esp
    let's all contribute nao
    Code:
    local boolfuqfuqkitty12390 = boolfuqfuqkitty12390 or false 
    concommand.Add("fuq_staffglow", function()
    if boolfuqfuqkitty12390 then
    print("STAFF INFECTION REMOVED")
    	boolfuqfuqkitty12390 = false
    	hook.Remove( "PreDrawHalos", "staffinfection" )
    else
    print("STAFF INFECTION HAS GR0WN D33P, WATCH THEM GL0W")
    	boolfuqfuqkitty12390 = true
    	hook.Add( "PreDrawHalos", "staffinfection", function()
    		local staff = {}
    
    		for k, v in pairs( player.GetAll() ) do
    			if v:GetUserGroup():lower():find("admin") or v:GetUserGroup():lower():find("mod") or v:GetUserGroup():lower():find("owner") or v:GetUserGroup():lower():find("dev") then
    				table.insert( staff, v )
    			end
    		end
    
    		halo.Add( staff, Color( 0, 255, 0 ), 0, 0, 2, true, true )
    	end)
    end
    end )


    "You don't bite the one who serves you"

  6. #5
    oxymorondotonline's Avatar
    Join Date
    May 2016
    Gender
    female
    Posts
    2
    Reputation
    10
    Thanks
    3
    there is nothing p about this

Similar Threads

  1. [Outdated] Cod4 ESP/Norecoil and Aimbot
    By bullpop in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 67
    Last Post: 07-04-2013, 03:28 AM
  2. tf2 ESP, RADAR AND MORE
    By Georgeooo in forum Team Fortress 2 Hacks
    Replies: 48
    Last Post: 02-19-2012, 09:55 AM
  3. [Detected] ProFire v3.1 [Telekill, ESP, Ghostmode, and more!]
    By CAFlames in forum Combat Arms Hacks & Cheats
    Replies: 272
    Last Post: 06-02-2011, 06:24 PM
  4. [Release] .::**Free Aimbot, ESP, lvlHack and MORE! - Mw2 Hack Team**::.
    By ***JAMES*** in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 49
    Last Post: 02-01-2010, 02:06 AM
  5. What Does Skeleton and Wireframe do?
    By XSnapSX in forum CrossFire Hacks & Cheats
    Replies: 14
    Last Post: 08-03-2009, 11:48 PM