Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local hotkey = ui.new_hotkey("aa", "other", "Freestanding Toggle")
  2. local freestanding_ref = ui.reference("aa", "anti-aimbot angles", "freestanding")
  3. client.set_event_callback("run_command", function(e)
  4. if ui.get(hotkey) then
  5. ui.set(freestanding_ref, "Default")
  6. else
  7. ui.set(freestanding_ref, "-")
  8. end
  9. end)
  10. client.set_event_callback("paint", function(ctx)
  11. if ui.get(hotkey) then
  12. renderer.indicator(255,255,255,255, "Freestanding")
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement