I am getting an error when playing in the roblox player “attempt to call a table value” even though I don’t get any errors in roblox studio
for index in handSealsUsed do
handSealsUsed[index] = nil
end
I am getting an error when playing in the roblox player “attempt to call a table value” even though I don’t get any errors in roblox studio
for index in handSealsUsed do
handSealsUsed[index] = nil
end
for index,_ in pairs(handSealsUsed) do
handSealsUsed[index] = nil
end
I didn’t notice that. thanks.()