cannot get into the demo game, need to open it up for EDIT, with no teamcreate.
Ok i fixed the issue and you should now have access to play it. Unfortunetely i wont be making it open source as the game contains assets that I am not allowed to redistribute.
I initially posted the game to showcase the performance.
lol. I like how the GitHub repo doesn’t have any source code, but rather the .rbxm file itself instead of a .lua file or something. Anyways, excellent work
After seeing your code, I saw that there were plenty of unneeded optimisations, such as
local Setmetatable = setmetatable
local Tick = tick
local Table = table
local Req = require
local Task = task
How does that even optimise anything? You’re just making unneeded localizations in your script, given that the global forms of these variables already exist, and by doing that, you’re just taking up more memory if I’m correct. While I understand these
local Tableinsert = table.insert
local V3 = Vector3.new
I don’t get the reason the other variables exist.
thanks for pointing that out for me. I just updated the module that removed my redundant optimisations.