Держите код
Тута бхоп и автострейф
Тута бхоп и автострейф
Бонняхоп:
hook.Add("Think", "BunnyHop", function()
if LocalPlayer():IsTyping() == false and input.IsKeyDown(KEY_SPACE) and LocalPlayer():IsOnGround() then
RunConsoleCommand("+jump")
timer.Create("Bhop", 0, math.random( .280, .290 ), function()
RunConsoleCommand("-jump")
end)
end
end)
hook.Add("CreateMove", "AutoStrafe", function(cmd)
if input.IsKeyDown(KEY_SPACE) and LocalPlayer():IsTyping() == false then
if(cmd:GetMouseX() < 0) then
cmd:SetSideMove(-10000);
elseif(cmd:GetMouseX() > 0) then
cmd:SetSideMove(10000);
end
end
end)