Advertisement
Nosssa

Hood Duels & Hood Customs | SILENT AIM ( UNIVERSAL HOOD GAMES )

Aug 29th, 2022 (edited)
40,513
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.23 KB | None | 1 0
  1. --[[
  2.  
  3.     Created By Nosssa & Atman Supports mostly, all hood games!
  4.  
  5.     Roblox Group ( TeamNosss! ): https://www.roblox.com/groups/16003304/TeamNosss#!/about
  6.  
  7.     SHIRT TO VERIFY: https://www.roblox.com/catalog/11104118318/Silent-Verification
  8.  
  9.     This script is packed with comments so you guys can understand better
  10.  
  11. --]]
  12.  
  13.  
  14. getgenv().ToggleKey =  (  "c"  )  -- [ Toggles LOCK On And Off ]
  15.  
  16. getgenv().ResolverToggleKey =  (  "v"  )  -- [ Toggles RESOLVER LOCK On And Off ]
  17.  
  18. getgenv().HideAllWhenAskedToScreenShareKey =  (  "y"  )  -- [ When asked to screenshare, you should click this button, it hides everything! ]
  19.  
  20.  
  21. getgenv().FOV =  (  250  )   -- [ Increases Or Decreases FOV Radius ]
  22.  
  23. getgenv().FOV_Visible = true -- [ "true" or "false", same for below ]
  24. getgenv().Show_Dot = true -- [ Shows The Dot Or Disables It ]
  25.  
  26. getgenv().Streaming_Mode = false -- [ On "true", it removes all evidences that point to silent aim automatically. ]
  27.  
  28.  
  29. getgenv().RAGEMode = false -- [ Whoever enters the circle gets LOCKED | This MAY OR MAY NOT NOT break resolver ]
  30.  
  31.  
  32. getgenv().Prediction =  (  .18  )   -- [ Lower Prediction: Lower Ping | Higher Prediction: Higher Ping | If you ask me "what pred is best" I will actually bite you! ]
  33.  
  34. getgenv().Auto_Prediction = false -- [ The below predictions ONLY APPLY if you made this "true", otherwise ignore ]
  35. getgenv().Assigned_Predictions = { --# Assign Prediction Values Per Sets | DO NOT DELETE THESE ";" commas!
  36.  
  37.     .155; -- [ 5 Ping ]
  38.     .156; -- [ 10 Ping]
  39.     .160; -- [ 20 Ping ]
  40.     .163; -- [ 30 Ping ]
  41.     .166; -- [ 40 Ping ]
  42.     .179; -- [ 50 Ping ]
  43.     .172; -- [ 60 Ping ]
  44.     .175; -- [ 70 Ping ]
  45.     .177; -- [ 80 Ping ]
  46.     .18; -- [ 90 Ping ]
  47.     .183; -- [ 100 Ping ]
  48.     .187; -- [ 110 Ping ]
  49.     .2; -- [ 120 Ping ]
  50.     .23; -- [ 130 Ping ]
  51.     .26; -- [ 140 Ping ]
  52.     .3; -- [ 150 Ping ]
  53.     .33; -- [ 160 Ping ] [ "Questionable ping" ]
  54.     .37; -- [ 170 Ping ]
  55.     .44; -- [ 180 Ping ]
  56.     .49; -- [ 190 Ping ]
  57.     .55; -- [ 200 Ping ] [ "TRASH ping" ]
  58.     .61; -- [ 210 Ping ]
  59.     .68; -- [ 220 Ping ]
  60.     .74; -- [ 230 Ping ]
  61.     .82; -- [ 240 Ping ]
  62.     .9; -- [ 250 Ping ]
  63.     1; -- [ 260 Ping ] [ No point in using silent aim ain't gonna hit anything at this point lul ]
  64.  
  65. };  --#SETS_COUNT [ 27 ]
  66.  
  67.  
  68. getgenv().IgnoreWalls = false -- [ "true" or "false" | TURN THIS TO "true" FOR "HOOD MODDED" IT WILL FIX THE STUPID NOT TOGGLING ISSUES ]
  69.  
  70.  
  71. getgenv().FaceLockDirection = false -- [ "true" makes this look at the player you're locking onto | THIS IS SUBJECT TO JITTERING! ]
  72.  
  73.  
  74. getgenv().DontShootMyFriends = true -- [ "true" or "false" | If this is on "true", when you toggle on to your friends it won't work ]
  75. getgenv().DontShootThesePeople = {  -- [ List Of Who Not To Target like this. "Quotations with their name and then a comma afterwards for each line"; ]
  76.  
  77.     "Player1";
  78.     "Player2";
  79.     "Noob3";
  80.     "Roblox";
  81.     "You can go on and on forever";
  82.  
  83. };
  84.  
  85.  
  86. getgenv().HitParts = false  -- [ Default is false but if you are streaming or want to look legit make this "true" ]
  87. getgenv().Randomized_HitParts = {  -- [ Lock will target the following parts | MORE HITPARTS ALLOWED = SLOWER LOCK ]
  88.  
  89.     "Head";
  90.     --"HumanoidRootPart"; -- This is kinda extra and slows lock down
  91.     --"UpperTorso"; -- This is gonna make you hit above the torso almost so its basically torso, therefore I disable it here
  92.     "LowerTorso";
  93.     --"RightHand"; -- This is kinda extra and slows lock down
  94.     "RightLowerArm";
  95.     "RightUpperArm";
  96.     "LeftUpperArm";
  97.     "LeftLowerArm";
  98.     --"LeftHand"; -- This is kinda extra and slows lock down
  99.     "LeftUpperLeg";
  100.     "LeftLowerLeg";
  101.     --"LeftFoot"; -- This is kinda extra and slows lock down
  102.     "RightUpperLeg";
  103.     "RightLowerLeg";
  104.     --"RightFoot"; -- This is kinda extra and slows lock down
  105.  
  106. };
  107.  
  108.  
  109. --[[
  110.  
  111.     Example of how to use!
  112.        
  113.     HitPart TARGETS head: "Head";
  114.     HitPart IGNORES head: --"Head";
  115.  
  116.     The "--" before the text is there so it can be ignored!
  117.  
  118.     You can also straight up delete the entire hitpart from the script and it works fine
  119.  
  120.     Some of these options contain basic; "true or false" statements
  121.  
  122.     Spell your "true" and "false" options correctly in all lowercase or it will error!
  123.  
  124.     You may delete all the comments (grey text in your executor)
  125.  
  126. --]]
  127.  
  128.  
  129. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nosssa/NossLock/main/ReZero", true))();
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement