How To Edit ModuleScript With A Plugin

Is there a way for it not to format values that are strings? Wondering because whenever I have a value as a string it turns it into a variable.

Example:

--OG
local module = {
	["one"] = {
		Value = "Some String";
	};
}

--TableToString
local module = {
	["one"] = {
		Value = Some String;
	};
}