From venuslock, 3 Weeks ago, written in Plain Text.
Embed
  1. local freddy = math.huge
  2. local glen = freddy
  3.  
  4.  
  5. local mt = getrawmetatable(game);
  6. make_writeable(mt);
  7. local old_index = mt.__index;
  8.  
  9. mt.__index = function(alfred,gilbert)
  10.    if tostring(alfred) == "Mag" then
  11.    if tostring(gilbert) == "Value" then
  12.        return glen;
  13.    end
  14.    end
  15.    return old_index(alfred,gilbert);
  16.    end