Advertisement
memecreater

farming

Sep 6th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local mt = getrawmetatable(game);
  2. make_writeable(mt);
  3. local old_index = mt.__index;
  4.  
  5. mt.__index = function(a, b)
  6. if tostring(a) == "farming" then -- Name of IntValue object
  7. if tostring(b) == "Value" then
  8. return 2000000; -- How much the value will be
  9. enda
  10. end
  11. return old_index(a, b);
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement