Advertisement
Guest User

Arsenal Script

a guest
Sep 28th, 2021
2,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. --// Temporal X Aimbot + ESP
  2. --// Created by ProtoType32
  3.  
  4. --// "Delta" refers to the amount of degrees that the aimbot expects the camera to rotate by (while camera sensitivity is set to 1.0) when the mouse moves by one (1) pixel.
  5. --// For example, if the delta was set to (2), that tells the aimbot that moving the mouse by one pixel on 1.0 sensitivity would rotate the camera by 2 degrees.
  6. --// It adjusts automatically to account for different camera sensitivity settings. Aimbot is most accurate on lower sensitivities.
  7.  
  8. --!! Keep these set to (nil) if you aren't sure what they do!
  9. local deltaX = nil -- Left/Right rotation delta
  10. local deltaY = nil -- Up/Down rotation delta
  11. local aimDeltaX = nil -- These delta values override the normal delta values when "gameAimButton" is being held down. Can be used for if games change camera sensitivity when aiming in.
  12. local aimDeltaY = nil -- ^^^
  13. local gameAimButton = nil -- Can be either an Enum.KeyCode or Enum.UserInputType
  14. -- Defaults to Enum.UserInputType.MouseButton2 if set to (nil)
  15.  
  16. --// I've also made a tool to automatically grab delta values here:
  17. --// https://pastebin.com/raw/YYdL4kxh
  18.  
  19. loadstring(game:HttpGet("https://pastebin.com/raw/w2S8YyDt", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement