Advertisement
boomer132

aimbot

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