[Solved] attempt to call a nill value (field 'insert')

hi everyone, i’m working on a script that have to save data on the server side until the server restarts, i want to use a table to do that, but every time i try to do 'table.insert (table, { … …}) 'server side, I have an error. I do not know what I am doing wrong or if the server side table has a specific way of working, compared to the client side

image
note that tempOBJTABLE is defined locally at the start of the script

image

if anyone know what could be wrong you’re welcome

solved
table.insert seems to not work very well on server side, simply replace table.insert with
“Your Table [index] = {what ever you want}”