Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local mt = getrawmetatable(game);
- make_writeable(mt);
- local old_index = mt.__index;
- mt.__index = function(a, b)
- if tostring(a) == "economy" then -- Name of IntValue object
- if tostring(b) == "Value" then
- return 2000000; -- How much the value will be
- end
- end
- return old_index(a, b);
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement