Advertisement
Geniss4506

Rush Point Aimbot

Jan 7th, 2022
29,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. -- Like and Subscribe: https://www.youtube.com/channel/UCDJ5YqanOhpFTqtnwfSyXBg
  2. -- // Dependencies
  3. local Aiming = loadstring(game:HttpGet("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Aiming/GamePatches/RushPoint.lua"))()
  4.  
  5. -- // Services
  6. local Workspace = game:GetService("Workspace")
  7.  
  8. -- // Vars
  9. local CurrentCamera = Workspace.CurrentCamera
  10. local CFramelookAt = CFrame.lookAt
  11.  
  12. -- // Hook
  13. local __index
  14. __index = hookmetamethod(game, "__index", function(t, k)
  15. -- // Make sure it is the shoot function trying to get the camera's cframe
  16. if (not checkcaller() and t == CurrentCamera and k == "CFrame" and Aiming.Check() and debug.validlevel(3) and #debug.getupvalues(3) == 11) then
  17. local Origin = __index(t, k).Position
  18. local Destination = Aiming.SelectedPart.Position
  19.  
  20. local Modified = CFramelookAt(Origin, Destination)
  21. return Modified
  22. end
  23.  
  24. -- // Return old
  25. return __index(t, k)
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement