boyned//Kampfkarren
boyned//Kampfkarren
Strange, while the connections aren't cleared the instances ARE cleared from memory. ``` local memory = {} for index=1,3e5 do local instance = Instance.new("Model", workspace) memory[index] = instance --COMMENT THIS...
Checking for newproxy directly is the best solution IMO, we don't care what version Lua is, just that the newest ones don't support newproxy.
I like @AmaranthineCodices's idea. Perhaps we can have shortcuts built into Lemur to call a function in a specific context (changing whatever global value there is for context to a...
Make sure it doesn't run when it shouldn't, by the way (I think only in ReplicatedStorage?). I have plenty of scripts in ReplicatedStorage for placeholder reasons that don't run. Edit:...
Could provide a Lua binding for it, but might be too much effort.
Changing the tags system right now to be singleton specific.
Example: Without anything like this, I have to do this... ``` local RunService = game:GetService("RunService") local runServiceIndex = getmetatable(RunService).__index getmetatable(RunService).__index = function(self, key) if key == "IsServer" then return function()...
I like that solution for this case in particular, but this issue still stands for most other things.
Example dump: https://gist.github.com/Kampfkarren/3cdf28715b3beecb084e0f945b165ce6
It's not deprecated now so I don't see a reason to deny it based on that. If you push towards deprecating it internally, you can always revert.