Advertisement
Guest User

DX9lua switch script

a guest
Sep 14th, 2022
2,428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. -- Script by Davey#3700 dm me for questions
  2. local FirstFOV = 60
  3. local FirstSmoothness = 10
  4. local FirstSensitivity = 1
  5. local FirstVerticalSmoothness = 1
  6.  
  7. local SecondFOV = 40
  8. local SecondSmoothness = 100
  9. local SecondSensitivity = 5
  10. local SecondVerticalSmoothness = 17
  11.  
  12.  
  13. if _G.toggle == nil then
  14. _G.toggle = true
  15. end
  16.  
  17. if (dx9.GetKey() == "[L]") then
  18. if _G.toggle == true then
  19. _G.toggle = false
  20. dx9.SetAimbotValue("fov", SecondFOV)
  21. dx9.SetAimbotValue("smoothness", SecondSmoothness)
  22. dx9.SetAimbotValue("sensitivity", SecondSensitivity)
  23. dx9.SetAimbotValue("vsmoothness", SecondVerticalSmoothness)
  24. else
  25. _G.toggle = true
  26. dx9.SetAimbotValue("fov", FirstFOV)
  27. dx9.SetAimbotValue("smoothness", FirstSmoothness)
  28. dx9.SetAimbotValue("sensitivity", FirstSensitivity)
  29. dx9.SetAimbotValue("vsmoothness", FirstVerticalSmoothness)
  30. end
  31. end
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement