Hi!
A little embarrassing, but I can’t figure out how to remove a key from a table :unsure:
Lets say I create a table like this:
local playerTable = {} local params = { name = "Rob Miracle", age = 29, uselessInfo = "Nothing useful", } playerTable[#playerTable +1] = params
How to remove the key “uselessInfo” from this exact player later?
(I have tables with a lot of players and many params).