Advertisement
some1idkxdd

Untitled

Mar 23rd, 2025
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local RunService = game:GetService("RunService")
  3. local LocalPlayer = Players.LocalPlayer
  4. local Mouse = LocalPlayer:GetMouse()
  5.  
  6. RunService.RenderStepped:Connect(function()
  7. local target = Mouse.Target
  8. if target and target.Parent then
  9. local character = target.Parent
  10. local player = Players:GetPlayerFromCharacter(character)
  11.  
  12. if player and player ~= LocalPlayer then
  13. print("Hovering over: " .. player.Name)
  14. -- You can add UI effects or assist aim here (legit methods only)
  15. end
  16. end
  17. end)
  18.  
Tags: lua esp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement