hack thing for gmod (mine)
my first cheat :))) yay
if you came here to complain about the how bad this is your wasting your time
it is bad
dont expect updates
tons of help from the gmod wiki (an by that i dont mean copying everything i needed for this from the wiki)
halos for esp is from that wiki an thats all i didnt make
Features:
ULXCheck : Checks if ulx is on the server
ESP : you know but it uses halos
Lua Executor : Runs clientside lua
My Hack
chat.AddText("To open the menu type Hax_Menu in console or bind it")
concommand.Add("Hax_Menu",function()
Menu=vgui.Create("DFrame")
Menu:Center()
Menu:SetVisible(true)
Menu:SetSize(400,400)
Menu:MakePopup()
Menu.Paint = function(s,w,h)
draw****undedBox(5,0,0,w,h,Color(70,70,70))
end
Menu:SetTitle("Hax")
Button2=vgui.Create("Button",Menu)
Button2:SetText("ULXCheck")
Button2:SetPos(10,120)
Button2:SetSize(70,70)
Button2.DoClick=function()
if ulx then
chat.AddText("ULX is on this server")
else
chat.AddText("ULX isnt on this server")
end
end
Button4=vgui.Create("DButton",Menu)
Button4:SetVisible(true)
Button4:SetSize(70,70)
Button4:SetPos(100,120)
Button4:SetText("ESP")
Button4.DoClick=function()
hook.Add( "PreDrawHalos", "AddHalos", function()
halo.Add( ents.FindByClass( "player" ), Color( 255, 0, 0 ), 5, 5, 2 )
end )
end
Button3=vgui.Create("Button",Menu)
Button3:SetText("Lua Executer")
Button3:SetPos(210,0)
Button3:SetSize(100,20)
Button3.DoClick=function()
Menu2=vgui.Create("DFrame")
Menu2.Paint=function(s,w,h)
draw****undedBox(5,0,0,w,h,Color(70,70,70))
end
Menu2:SetPos(Menu:GetPos())
Menu2:SetSize(350,350)
Box=vgui.Create("DTextEntry",Menu2)
Box:Center()
Box:SetSize(200,200)
Box:SetPos(10,30)
Menu2:SetText("Lua Executer")
Execute=vgui.Create("DButton",Menu2)
Execute:SetPos(1,250)
Execute:SetSize(100,50)
Execute:SetText("Run Lua")
Execute.DoClick = function()
RunString(tostring(Box:GetText()))
chat.AddText("You ran: "..tostring(Box:GetText()))
end
Menu2:MakePopup()
end
end)