This will prevent the gamespark plugin from loading:
local mt = getmetatable(\_G) if mt == nil then mt = {} setmetatable(\_G, mt) end \_\_STRICT = true mt.\_\_declared = {} mt.\_\_newindex = function (t, n, v) if \_\_STRICT and not mt.\_\_declared[n] then local w = debug.getinfo(2, "S").what if w ~= "main" and w ~= "C" then error("assign to undeclared variable '"..n.."'", 2) end mt.\_\_declared[n] = true end rawset(t, n, v) end
local GS = require(“plugin.gamesparks”)
I think this is a bug?