Advertisement
SigmaBoy456

hookmetamethod example #345

Sep 5th, 2024
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. -- Hookmetamethod
  2.  
  3. local newdex = hookmetamethod(game, "__index", function(self, num)
  4. if tostring(self) == "Chakra" and num == "Value" then
  5. return 999999
  6. end
  7. return newdex(self, num)
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement