Is there anyway to update a module script's table data?

Is there any way to update these data from outside local and scripts?
The module script is placed in replicated storange.

return {
	["FlightInfo"] = {
		["Flightnum"] = "N/A",
		["Aircraft"] = "N/A",
		["Destination"] = "N/A",
		["Gate"] = "N/A",
		["Time"] = "N/A",
		["Status"] = "N/A",
	},
	["ClassStatus"] = {
		["Eco"] = "closed",
		["Business"] = "closed",
		["Investor"] = "closed",
	},
}

Modules can only be ran once, try adding a :Clone() to the end of your require() such as require(YourModule:Clone()) in the command bar