Simple Aimbot Script
Script Name: Simple Aimbot Script
Credits: Me
Description: This simple script will aim at anyone's head and fire that is close to where you're looking, when pressing B. Because it's so simple, it's a bit glitchy so it may not always aim where you exactly want it to. Also, people might notice it so be careful; I was just banned on stronghold for it. XD
To install/use it, you need a Lua bypass, which there are plenty on the forum, and you can just put it into garrysmod/lua/autorun/ and name it mysterious.lua or something. If it doesn't start automatically when you join, type this in console: "lua_openscript_cl autorun/mysterious.lua". Happy aimbotting you lazy son of a bitch!
To use it in game, press B while looking near a person you want to shoot, it'll fire and aim all for you.
Credits: Me
Description: This simple script will aim at anyone's head and fire that is close to where you're looking, when pressing B. Because it's so simple, it's a bit glitchy so it may not always aim where you exactly want it to. Also, people might notice it so be careful; I was just banned on stronghold for it. XD
To install/use it, you need a Lua bypass, which there are plenty on the forum, and you can just put it into garrysmod/lua/autorun/ and name it mysterious.lua or something. If it doesn't start automatically when you join, type this in console: "lua_openscript_cl autorun/mysterious.lua". Happy aimbotting you lazy son of a bitch!
To use it in game, press B while looking near a person you want to shoot, it'll fire and aim all for you.
Code:
hook.Add( "Think", "ThinkAboutIt", function()
if input.IsKeyDown(KEY_B) then
local closest = nil
local hitpos = LocalPlayer():GetEyeTrace()
for k, v in pairs( ents.FindInSphere(hitpos.HitPos,500) ) do
if v:IsPlayer() and v != LocalPlayer() then
if v:Alive() then
closest = v
end
end
end
if closest and closest:IsPlayer() and closest:Alive() then
local head = closest:LookupBone("ValveBiped.Bip01_Head1")
local headpos, headang = closest:GetBonePosition(head)
LocalPlayer():SetEyeAngles( (headpos-LocalPlayer():GetShootPos()):Angle() )
RunConsoleCommand("+attack")
timer.Simple(0.25,function()
RunConsoleCommand("-attack")
end)
end
end
end)


