Advertisement
Honansik

RIOTFALL Aim Script [Always Headshot]

Dec 18th, 2021
4,783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local OldNameCall
  2. OldNameCall = hookmetamethod(game, "__namecall", function(...)
  3.     Args={...}
  4.     local Self = Args[1]
  5.     if not checkcaller() and #Args>2 and typeof(Args[3])=="table" and getnamecallmethod()=="FireServer" and Args[3]["limbName"] then
  6.         Args[3]["limbName"]="Head"
  7.         return OldNameCall(unpack(Args))
  8.     end
  9.     return OldNameCall(...)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement