Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Steam Games Hacks & Cheats › Rainbow Six: Siege › R6S ABSOLUTE NO RECOIL/SPREAD (Logitech LUA Script)

R6S ABSOLUTE NO RECOIL/SPREAD (Logitech LUA Script)

Posts 1–15 of 56 · Page 1 of 4
kumainu
kumainu
R6S ABSOLUTE NO RECOIL/SPREAD (Logitech LUA Script)
Credit: Wazzaby




This LUA script renders all guns to no-recoil mode and leave it with little spread. Even Buck's AR got absolute no recoil
Originally Wazzaby was code it in AHK, but due to BattlEye has banned AHK user so I took the code and change it to Logitech LUA for Logitech user.



Function: Use "Scroll Lock" to activate/deactivate the code. (SCRLOCK light on = Activate / off = Deactivate)

Code:
EnablePrimaryMouseButtonEvents(true);
 
function OnEvent(event, arg)
    if IsKeyLockOn("scrolllock" )then
        if IsMouseButtonPressed(1) then
            repeat
MoveMouseRelative(3,0)
Sleep(1)
MoveMouseRelative(-3,0)
Sleep(1)
MoveMouseRelative(3,10)
Sleep(1)
MoveMouseRelative(0,10)
Sleep(1)
MoveMouseRelative(-3,-10)
Sleep(1)
MoveMouseRelative(0,-10)
Sleep(1)
            until not IsMouseButtonPressed(1)
        end
    end
end
TIPS: Equip compensator to your gun and change in-game mouse sensivity to 11 for maximum effect, higher than that may cause more spread and unstable recoil.



 
original Wazzaby thread
Quote Originally Posted by Bvlcony View Post
Originally Posted by Wazzaby
This script makes your mouse move in small square making you unable to shoot precisely at one point, but reducing recoil and spread on every weapon.

Works only when LeftMouseButton is pressed.
Can be useful in many shooters.
Hotkeys: Caps=Pause; LMB=working loop; End=exit;

Code:
#NoEnv
SendMode Input
~CapsLock::Suspend
~End::ExitApp


~*$LButton::
Loop
{

GetKeyState, state, Lbutton, P
if state=u
break

mouseXY(3,0)
sleep 1
mouseXY(0,10)
sleep 1
mouseXY(-3,-10)
sleep 1
mouseXY(-3,0)
sleep 1
mouseXY(3,10)
sleep 1
mouseXY(0,-10)
sleep 1

}
return

mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uin t,0)
}
Paste this in notepad and open with AHK.
Ahk scripts are not cheats, so you will get no ban for using this.


*


Dont forget to press that "Thanks" button, please.


#1 · edited 8y ago · 8y ago
0xHigh
0xHigh
how does this effect spread? tf? it’s a script not a wpm lol
#2 · 8y ago
LE
Leguaani
Could you make it work with a 6-6 by 53 ingame sens and i have 800 dpi
#3 · 8y ago
0xHigh
0xHigh
Quote Originally Posted by Leguaani View Post
Could you make it work with a 6-6 by 53 ingame sens and i have 800 dpi
make it work yourself, just change the movemouserelative numbers to a little bit lower and see what works for you (or higher idk how your sens is)
#4 · 8y ago
LE
Leguaani
Ok ill try to do that

- - - Updated - - -

Went to a casual with this on played 2 rounds and got permabanned... had no other cheats on the computer
#5 · 8y ago
0xHigh
0xHigh
Quote Originally Posted by Leguaani View Post
Ok ill try to do that

- - - Updated - - -

Went to a casual with this on played 2 rounds and got permabanned... had no other cheats on the computer
umm was this macro in your logitech mouse?
#6 · 8y ago
22
2235539406
i pasted the script into logitech gaming software and it didn't work. can you guys release a profile for downloading?
nvm im stupid, i forgot to press scrlk, also guys you need to run logitech gaming software in admin
#7 · edited 8y ago · 8y ago
kumainu
kumainu
Quote Originally Posted by 0xHigh View Post
how does this effect spread? tf? it’s a script not a wpm lol
idk, but with some gun with high spread like Buck's AR or Ying's LMG, I notice a huge improvement in weapon spread.
Then I slap that compensator in and my gun just went full-laser mode. lol


Quote Originally Posted by Leguaani View Post
Ok ill try to do that

- - - Updated - - -

Went to a casual with this on played 2 rounds and got permabanned... had no other cheats on the computer
some proof or it didn't happen.
btw I was using this since Ops Health and its still work fine.
#8 · 8y ago
TY
tylerw220
so we cant use this unless we have a logitech mouse?
#9 · 8y ago
Fire099
Fire099
Quote Originally Posted by 0xHigh View Post
umm was this macro in your logitech mouse?
He probably saw AHK and just knocked himself out
#10 · 8y ago
VI
Vistlip29


A very quick comparison between this script, normal recoil and SealTeamSix Profile using "No recoil by SushiWang 2" (First Pic)

Also, found that this script may not work for every gun with 11 sensitivity like OP says, as it drives your aim to the left.(Blackbeard pic)

Use around 24 and 25 sensitivity on all 3 since 11 is like normal recoil.(Blackbeard pic)

I set the values in this order: 24, 24, 25. (Blackbeard pic)

---Update

Also I found that this script doesnt work well on all weapons, for example Thermite's assault rifle and the type 89 (the last one's a bitch, but it actually works worse than SealTeamSix no recoil)
20180101012350_1.jpg 20180101014331_1.jpg
#11 · edited 8y ago · 8y ago
kumainu
kumainu
Quote Originally Posted by Vistlip29 View Post


A very quick comparison between this script, normal recoil and SealTeamSix Profile using "No recoil by SushiWang 2" (First Pic)

Also, found that this script may not work for every gun with 11 sensitivity like OP says, as it drives your aim to the left.(Blackbeard pic)

Use around 24 and 25 sensitivity on all 3 since 11 is like normal recoil.(Blackbeard pic)

I set the values in this order: 24, 24, 25. (Blackbeard pic)

---Update

Also I found that this script doesnt work well on all weapons, for example Thermite's assault rifle and the type 89 (the last one's a bitch, but it actually works worse than SealTeamSix no recoil)
strange, mine was work perfectly for all gun. Even Ash's R4c w/o foregrip still got no-recoil.

#12 · 8y ago
LA
lamaj22
Anyone can help me ? how i run this ?I already downloaded the Lua
#13 · 8y ago
0xHigh
0xHigh
Quote Originally Posted by lamaj22 View Post
Anyone can help me ? how i run this ?I already downloaded the Lua
in the logitech software right click the profile and click scripting then paste this in
#14 · 8y ago
LA
lamaj22
h t t p s : / / i m g u r . c o m / a / d R i j V

what am I doing wrong ?
#15 · 8y ago
Posts 1–15 of 56 · Page 1 of 4

Post a Reply

Similar Threads

  • Logitech lua-script no recoil bf4 ( AEK-971 - ACE 23 - Bulldog )By theycallmebigbrother in Battlefield 4 Hacks & Cheats
    22Last post 4y ago
  • Logitech LUA script, no recoil with RAPID FIRE (HELP)By crxismyfriend in PLAYERUNKNOWN'S BATTLEGROUNDS (PUBG) Hacks & Cheats
    6Last post 8y ago
  • Can I combine these 2 logitech lua scripts?By UntoldMystery in Counter-Strike 2 Scripts
    1Last post 10y ago
  • Rust Logitech Lua Script LaunguageBy Tzah852852852 in Rust Discussions & Help
    3Last post 9y ago
  • Logitech LUA recoil reduce Script! for every Game!By lumpi999 in Battlefield 4 Hacks & Cheats
    2Last post 10y ago

Tags for this Thread

None