Guest User

EBOT Hack

a guest
Aug 3rd, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.51 KB | None | 0 0
  1. local ply = LocalPlayer() chat.AddText( Color( 0, 255, 0 ), "[EBOT]", Color( 0, 255, 255 ), " Correctly Loaded!" ) timer.Simple( 2, function() chat.AddText( Color( 0, 255, 0 ), "[EBOT]", Color( 0, 255, 255 ), " Loaded Scripts!" ) end ) timer.Simple( 5, function() chat.AddText( Color( 0, 255, 0 ), "[EBOT]", Color( 0, 255, 255 ), " Done!" ) end ) function e_largeb() RunConsoleCommand( "button_model", "models/props_buildings/collapsedbuilding01a.mdl" ) chat.AddText( Color( 0, 255, 0 ), "[EBOT]", Color( 0, 255, 255 ), " Open The Button Tool To See The Results!" ) end concommand.Add( "e_largebuilding", e_largeb ) CreateClientConVar( "e_propkill_prop", "models/props/de_tides/gate_large.mdl" ) function e_pkill() RunConsoleCommand( "gm_spawn", GetConVarString("e_propkill_prop") ) end concommand.Add( "e_propkill", e_pkill ) function steam_fuckyou() chat.AddText( Color( 0, 255, 255 ), "Steam Is A Fucking Ass hole." ) end concommand.Add( "steam_your_an_asshole", steam_fuckyou ) function e_wallhax() chat.AddText( Color( 0, 255, 0 ), "[EBOT]", Color( 0, 255, 255 ), " Esp Enabled!" ) 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 draw.DrawText( Name, "ChatFont", Position.x, Position.y, Color( 255, 255, 255, 255 ), 1 ) end end ) end concommand.Add( "e_wallhack", e_wallhax ) function PrintEnts() PrintTable(ents.GetAll()) end concommand.Add( "e_printents", PrintEnts )
Add Comment
Please, Sign In to add comment