Im looking over this code and its confusing me:
function ObjShadow.Debris(Type45, Type46)
if not ObjShadow then
return
end
if not ObjShadow.Parent then
return
end;
task.spawn(function()
wait(Type46)
if ObjShadow then
ObjShadow:Remove()
end
end)
end
because, while it works, it is only called with a single parameter
Debris(0.2)
There Are several Examples of this
Yes I know about setting default parameters, but there are none anywhere in the script