Advertisement
UsernameRTX

Hitbox Expander

Jul 21st, 2021 (edited)
21,473
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | Source Code | 0 1
  1. local Players = workspace.Players
  2.  
  3. local OldIndex = nil
  4.  
  5. OldIndex = hookmetamethod(Players, "__index", function(Self, Key)
  6.     if not checkcaller() and tostring(Self) == "Head" and Key == "Size" then
  7.         return Vector3.new(10, 10, 10)
  8.     end
  9.     return OldIndex(Self, Key)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement