Any help for this, I don’t know why the table thinks it is nil
you cant do ipairs if the index thingy is not a number, Use pairs instead
works:
local Table = {
[1] = {"a"} -- the thingy in []
}
doesnt work:
local Table = {
["a"] = "a"
}
What exactly is the RequestDrops script and; what is the PullItem function?
This.
But may not be the issue - it makes no sense that it would be saying the table is nil if it is just a simple case of pairs vs ipairs.
OP needs to be provide more of the code so that we can actually determine the issue