Advertisement
Nosssa

Five Duels Silent Aim

Mar 2nd, 2023 (edited)
25,298
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.97 KB | None | 2 2
  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 = (  "t"  ) -- [ 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. getgenv().MobileLockFovCENTRE = false -- [ Only For Mobile Players | Keep on "false" ]
  23.  
  24.  
  25. getgenv().FOV_Visible = true -- [ "true" or "false", same for below ]
  26. getgenv().Show_Dot = true -- [ Shows The Dot Or Disables It ]
  27.  
  28. getgenv().Streaming_Mode = false -- [ On "true", it removes all evidences that point to silent aim automatically. ]
  29.  
  30.  
  31. getgenv().Prediction =  (  .18  )   -- [ Lower Prediction: Lower Ping | Higher Prediction: Higher Ping | If you ask me "what pred is best" I will actually bite you! ]
  32.  
  33. getgenv().Auto_Prediction = true -- [ The below predictions ONLY APPLY if you made this "true", otherwise ignore ]
  34. getgenv().Assigned_Predictions = { --# Assign Prediction Values Per Sets | DO NOT DELETE THESE ";" commas!
  35.  
  36.     .155; -- [ 5 Ping ]
  37.     .156; -- [ 10 Ping]
  38.     .160; -- [ 20 Ping ]
  39.     .163; -- [ 30 Ping ]
  40.     .166; -- [ 40 Ping ]
  41.     .179; -- [ 50 Ping ]
  42.     .172; -- [ 60 Ping ]
  43.     .175; -- [ 70 Ping ]
  44.     .177; -- [ 80 Ping ]
  45.     .18; -- [ 90 Ping ]
  46.     .183; -- [ 100 Ping ]
  47.     .187; -- [ 110 Ping ]
  48.     .2; -- [ 120 Ping ]
  49.     .23; -- [ 130 Ping ]
  50.     .26; -- [ 140 Ping ]
  51.     .3; -- [ 150 Ping ]
  52.     .33; -- [ 160 Ping ] [ "Questionable ping" ]
  53.     .37; -- [ 170 Ping ]
  54.     .44; -- [ 180 Ping ]
  55.     .49; -- [ 190 Ping ]
  56.     .55; -- [ 200 Ping ] [ "TRASH ping" ]
  57.     .61; -- [ 210 Ping ]
  58.     .68; -- [ 220 Ping ]
  59.     .74; -- [ 230 Ping ]
  60.     .82; -- [ 240 Ping ]
  61.     .9; -- [ 250 Ping ]
  62.     1; -- [ 260 Ping ] [ No point in using silent aim ain't gonna hit anything at this point lul ]
  63.  
  64. };  --#SETS_COUNT [ 27 ]
  65.  
  66.  
  67. getgenv().DontShootMyFriends = true -- [ "true" or "false" | If this is on "true", when you toggle on to your friends it won't work ]
  68. getgenv().DontShootThesePeople = {  -- [ List Of Who Not To Target like this. "Quotations with their name and then a comma afterwards for each line"; ]
  69.  
  70.     "Player1";
  71.     "Player2";
  72.     "Noob3";
  73.     "Roblox";
  74.     "You can go on and on forever";
  75.  
  76. };
  77.  
  78.  
  79. getgenv().HitParts = false -- [ Default is false but if you are streaming or want to look legit make this "true" ]
  80. getgenv().Randomized_HitParts = {  -- [ Lock will target the following parts | MORE HITPARTS ALLOWED = SLOWER LOCK ]
  81.  
  82.     "Head";
  83.     --"HumanoidRootPart"; -- This is kinda extra and slows lock down
  84.     --"UpperTorso"; -- This is gonna make you hit above the torso almost so its basically torso, therefore I disable it here
  85.     "LowerTorso";
  86.     --"RightHand"; -- This is kinda extra and slows lock down
  87.     "RightLowerArm";
  88.     "RightUpperArm";
  89.     "LeftUpperArm";
  90.     "LeftLowerArm";
  91.     --"LeftHand"; -- This is kinda extra and slows lock down
  92.     "LeftUpperLeg";
  93.     "LeftLowerLeg";
  94.     --"LeftFoot"; -- This is kinda extra and slows lock down
  95.     "RightUpperLeg";
  96.     "RightLowerLeg";
  97.     --"RightFoot"; -- This is kinda extra and slows lock down
  98.  
  99. };
  100.  
  101. --[[
  102.  
  103.     Example of how to use!
  104.        
  105.     HitPart TARGETS Head: "Head";
  106.     HitPart IGNORES Head: --"Head";
  107.  
  108.     The "--" before the text is there so it can be ignored!
  109.  
  110.     You can also straight up delete the entire hitpart from the script and it works fine
  111.  
  112.     Some of these options contain basic; "true or false" statements
  113.  
  114.     Spell your "true" and "false" options correctly in all lowercase or it will error!
  115.  
  116.     You may delete all the comments (grey text in your executor)
  117.  
  118. --]]
  119.  
  120.  
  121. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nosssa/NossLock/main/5iveDuelsFTW", true))();
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement