Results 1 to 11 of 11
  1. #1
    TroubleMakers's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    27
    My Mood
    Bashful

    SethHeraMultiPlayerGameHack v1

    THIS IS HACK LEAKED THREAD !!!
    FEEL FREE TO COMMENT!!!!!!!


    Code:
    -- prohack made by pro coder ok cool
    -- this is SethHeraMultiPlayerGameHack v1
    
    local AimBot = CreateClientConVar( "aimbot_enabled", 0, true, false )
    
    function aimbot() -- Starting the function
    	local ply = LocalPlayer() -- Getting ourselves
    	local trace = util.GetPlayerTrace( ply ) -- Player Trace part. 1
    	local traceRes = util.TraceLine( trace ) -- Player Trace part. 2
    	if traceRes.HitNonWorld then -- If the aimbot aims at something that isn't the map..
    		local target = traceRes.Entity -- It's obviously an entity.
    		if target:IsPlayer() then -- But it must be a player.
    			local targethead = target:LookupBone("ValveBiped.Bip01_Head1") -- In this aimbot we only aim for the head.
    			local targetheadpos,targetheadang = target:GetBonePosition(targethead) -- Get the position/angle of the head.
    			if AimBot:GetBool() then
    				ply:SetEyeAngles((targetheadpos - ply:GetShootPos()):Angle()) -- And finally, we snap our aim to the head of the target.
    			end
    		end
    	end
    end
    hook.Add("Think","aimbot",aimbot) -- The hook will spam "aimbot" until it finds a target..
    
    local WallHack = CreateClientConVar( "wallhack_enabled", 0, true, false )
    
    hook.Add( "HUDPaint", "Wallhack", function()
     
    	for k,v in pairs ( player.GetAll() ) do
     
    		local Position = ( v:GetPos() + Vector( 0,0,80 ) ):ToScreen()
    		local Name = ""
     
    		if v == LocalPlayer() then Name = "" else Name = v:Name() end
     
    		if WallHack:GetBool() then
     
    			draw.DrawText( Name, "Default", Position.x, Position.y, Color( 255, 255, 255, 255 ), 1 )
    		
    		end
     
    	end
     
    end )
    
    local shouldDraw = true
    
    local hzCross = CreateClientConVar("HZ_Crosshair","0",false)
    
    function Crosshair1()
    if hzCross:GetBool() then
    surface.SetDrawColor(team.GetColor(LocalPlayer():Team()))
    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
    end
    hook.Add("HUDPaint","CustomCross",Crosshair1)
    
     local NoRecoil = CreateClientConVar( "norecoil_enabled", 0, true, false )
     local NoSpread = CreateClientConVar( "nospread_enabled", 0, true, false )
    local TriggerBot = CreateClientConVar( "triggerbot_enabled", 0, true, false )
     
    hook.Add( "Think", "Triggerbot", function()
     
        local Target = LocalPlayer():GetEyeTrace().Entity
     
    	if NoRecoil:GetBool() then
    	LocalPlayer():GetActiveWeapon().Primary.Recoil = 0
    	end
    	if NoSpread:GetBool() then
    	LocalPlayer():GetActiveWeapon().Primary.Spread = 0
    	LocalPlayer():GetActiveWeapon().Primary.Cone = 0
    	end
     
        if TriggerBot:GetInt() == 1 and LocalPlayer():Alive() and LocalPlayer():GetActiveWeapon():IsValid() and ( Target:IsPlayer() or Target:IsNPC() ) then
     
            if !Firing then
     
                RunConsoleCommand( "+attack" )
                //LocalPlayer():GetActiveWeapon().SetNextPrimaryFire( LocalPlayer():GetActiveWeapon() )
                Firing = true
     
            else
     
                RunConsoleCommand( "-attack" ) 
                Firing = false
     
            end
     
        end
     
    end )
    	
    
    function fPrintSomething( player, command, arguments )
        
    	local DermaPanel = vgui.Create( "DFrame" )
    	DermaPanel:SetPos( 50,50 )
    	DermaPanel:SetSize( 250, 300 )
    	DermaPanel:SetTitle( "Testing Derma Stuff" )
    	DermaPanel:SetVisible( true )
    	DermaPanel:SetDraggable( true )
    	DermaPanel:ShowCloseButton( true )
    	DermaPanel:MakePopup()
    	 
    	local SomeCollapsibleCategory = vgui.Create("DCollapsibleCategory", DermaPanel)
    	SomeCollapsibleCategory:SetPos( 25,50 )
    	SomeCollapsibleCategory:SetSize( 200, 50 ) -- Keep the second number at 50
    	SomeCollapsibleCategory:SetExpanded( 0 ) -- Expanded when popped up
    	SomeCollapsibleCategory:SetLabel( "Pro Hax MultiPlayerGameHack" )
    	 
    	CategoryList = vgui.Create( "DPanelList" )
    	CategoryList:SetAutoSize( true )
    	CategoryList:SetSpacing( 5 )
    	CategoryList:EnableHorizontal( false )
    	CategoryList:EnableVerticalScrollbar( true )
    	 
    	SomeCollapsibleCategory:SetContents( CategoryList ) -- Add our list above us as the contents of the collapsible category
    	 
    		local CategoryContentOne = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentOne:SetText( "Aim Bot" )
    		CategoryContentOne:SetConVar( "aimbot_enabled" )
    		CategoryContentOne:SetValue( 1 )
    		CategoryContentOne:SizeToContents()
    	CategoryList:AddItem( CategoryContentOne ) -- Add the above item to our list
    	 
    		local CategoryContentTwo = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentTwo:SetText( "Wall Hack" )
    		CategoryContentTwo:SetConVar( "wallhack_enabled" )
    		CategoryContentTwo:SetValue( 1 )
    		CategoryContentTwo:SizeToContents()
    	CategoryList:AddItem( CategoryContentTwo )
    	 
    		local CategoryContentThree = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentThree:SetText( "Trigger Bot" )
    		CategoryContentThree:SetConVar( "triggerbot_enabled" )
    		CategoryContentThree:SetValue( 1 )
    		CategoryContentThree:SizeToContents()
    	CategoryList:AddItem( CategoryContentThree )
    	 
    		local CategoryContentFour = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentFour:SetText( "Cross Hair" )
    		CategoryContentFour:SetConVar( "HZ_Crosshair" )
    		CategoryContentFour:SetValue( 1 )
    		CategoryContentFour:SizeToContents()
    	CategoryList:AddItem( CategoryContentFour )
    	
    			local CategoryContentFour2 = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentFour2:SetText( "No Recoil" )
    		CategoryContentFour2:SetConVar( "norecoil_enabled" )
    		CategoryContentFour2:SetValue( 1 )
    		CategoryContentFour2:SizeToContents()
    	CategoryList:AddItem( CategoryContentFour2 )
    	
    			local CategoryContentFour3 = vgui.Create( "DCheckBoxLabel" )
    		CategoryContentFour3:SetText( "No Spread" )
    		CategoryContentFour3:SetConVar( "nospread_enabled" )
    		CategoryContentFour3:SetValue( 1 )
    		CategoryContentFour3:SizeToContents()
    	CategoryList:AddItem( CategoryContentFour3 )
    	
    	
    	
    	 
    end
     
    concommand.Add( "prohax_menu", fPrintSomething )
    FOUND ON THIS PASTER https://pastebin.com/iiYXdbmD
    Last edited by TroubleMakers; 05-10-2014 at 02:13 PM.

  2. The Following User Says Thank You to TroubleMakers For This Useful Post:

    KorkiPoo (05-11-2014)

  3. #2
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    this hack is so bad.
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

  4. #3
    z346etn56jzd7egth's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    37
    Reputation
    19
    Thanks
    1,123
    My Mood
    Dead
    Aimbot is copy/paste from the old wiki, lol.

  5. #4
    Zombeezz's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Location
    professional 1v1er
    Posts
    156
    Reputation
    10
    Thanks
    128
    Quote Originally Posted by kokomika View Post
    Aimbot is copy/paste from the old wiki, lol.
    Lol, didn't even watch the video.
    pro 1v1er if you want to 1v1 pm me

    ayy lmao

  6. #5
    Kingofultima's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    113
    My Mood
    Bored
    The title is cancer to my eyes, the code is even worse.


    Shrek is Love, Shrek is Life

  7. #6
    KorkiPoo's Avatar
    Join Date
    Aug 2012
    Gender
    female
    Location
    Belgium
    Posts
    110
    Reputation
    10
    Thanks
    904
    Works alright, definetely up there with some of the best hacks. Thanks Troublemakers.

  8. #7
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,470
    GG best hack ever beats all c++ hacks gonna use it
    Empty for now

  9. #8
    TroubleMakers's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    27
    My Mood
    Bashful
    Quote Originally Posted by max1612 View Post
    GG best hack ever beats all c++ hacks gonna use it
    Thank You For Your Positive Feedback!!

  10. #9
    Libbykona's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    With Garry Newman
    Posts
    20
    Reputation
    10
    Thanks
    3
    My Mood
    Bitchy
    Im a derp how do i use this?





  11. #10
    D3M0L1T10N's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    1,364
    Reputation
    19
    Thanks
    656
    thank you based miku for more elite cheat leaks
    8:53 PM - Xenomorphic 1 hr 7 min cooldown: So is MPGH only exist so people can c+p from ************* and troll the gmod section?

    [IMG]https://i739.photobucke*****m/albums/xx38/jorroa5990/flatexch2_zpsec96a7e2.gif[/IMG]

  12. The Following User Says Thank You to D3M0L1T10N For This Useful Post:

    TroubleMakers (05-16-2014)

  13. #11
    Kona-chan's Avatar
    Join Date
    Oct 2014
    Gender
    female
    Posts
    380
    Reputation
    22
    Thanks
    685
    Bump
    This should be stickied.

  14. The Following 3 Users Say Thank You to Kona-chan For This Useful Post:

    Liquidsocks (05-09-2015),max1612 (05-09-2015),polivilas (05-10-2015)

Similar Threads

  1. [Outdated] [TUTO] How to code a Garry's Mod SethHeraMultiPlayerGameHack
    By TroubleMakers in forum Garry's Mod Coding & Resources
    Replies: 6
    Last Post: 09-30-2015, 02:23 AM