Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script by Davey#3700 dm me for questions
- local FirstFOV = 60
- local FirstSmoothness = 10
- local FirstSensitivity = 1
- local FirstVerticalSmoothness = 1
- local SecondFOV = 40
- local SecondSmoothness = 100
- local SecondSensitivity = 5
- local SecondVerticalSmoothness = 17
- if _G.toggle == nil then
- _G.toggle = true
- end
- if (dx9.GetKey() == "[L]") then
- if _G.toggle == true then
- _G.toggle = false
- dx9.SetAimbotValue("fov", SecondFOV)
- dx9.SetAimbotValue("smoothness", SecondSmoothness)
- dx9.SetAimbotValue("sensitivity", SecondSensitivity)
- dx9.SetAimbotValue("vsmoothness", SecondVerticalSmoothness)
- else
- _G.toggle = true
- dx9.SetAimbotValue("fov", FirstFOV)
- dx9.SetAimbotValue("smoothness", FirstSmoothness)
- dx9.SetAimbotValue("sensitivity", FirstSensitivity)
- dx9.SetAimbotValue("vsmoothness", FirstVerticalSmoothness)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement