Did you add it in the fxmanifest ? Example : client_export “myExportFct” ( or server, depending on which side ) ( on the client side it might be export and not client_export, im not sure, try both )
Ooooh ok mb misunderstood the problem, have tried defining your array before using it ? I know sometimes ( idk why ) it doesnt accept the data but only a variable poiting to the data
Like
Local tbl = {
– content
}
and then local test = exports:readonly(tbl)
Or what you can try is like creating an obj ( like ESX ) and you instantiate in the other file, it wont be an export but maybe that could work ( if there’s an issue with the export it could be something to consider )