Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. GUI_AIM_AT.Text = 'AIMING : TORSO'
  2. elseif _G.AIM_AT == 'Torso' then
  3. _G.AIM_AT = 'Head'
  4. GUI_AIM_AT.Text = 'AIMING : HEAD'
  5. end
  6. end
  7. end)
  8.  
  9. game:GetService('RunService').RenderStepped:connect(function()
  10. if ENABLED then
  11. local TARGET = GetNearestPlayerToMouse()
  12. if (TARGET ~= false) then
  13. local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
  14. if AIM then
  15. CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  16. end
  17. GUI_TARGET.Text = 'AIMBOT : '.. TARGET.Name:sub(1, 5)
  18. else
  19. GUI_TARGET.Text = 'AIMBOT : OFF'
  20. end
  21. end
  22. end)
  23.  
  24. repeat
  25. wait()
  26. if ESP_ENABLED == true then
  27. FIND()
  28. end
  29. until ESP_ENABLED == false
  30. wait()
  31. _G.FREE_FOR_ALL = true
  32. _G.BIND = 50 -- LEFT CTRL
  33. _G.ESP_BIND = 52 -- LEFT ALT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement