I am having trouble with the system I am building and I am stuck on a bug. I just want to know if the above is the cause or not. Otherwise, I can debug it myself.
I did try that, I just freaking want to know if the not working of my code is caused by this or not. Otherwise, I still have some sanity left to debug the code. Also again, I restarted my pc a million times.
The whole point of it being in the model is so people who dont know scripting can know where to find it and adjust it so its useless of it being in the SSS.
Also i did do it and nothing changed.
Have you tried using :GetChildren() on the model and defining the parts by indexing that table?
local parts = model:GetChildren()
local partsA = {parts["Part2"], parts["Part3"]}
local partsB = {parts["Part4"], parts["Part5"]}
Also you define Model = script.Parent after you’ve used script.Parent 7x before, why not define it at the top of your code under SystemModule and then reference that instead?