Requested module was required recursively

Requested module was required recursively

Code:

local moduleScript = require(game.ReplicatedStorage.ModuleScript)
local module = {
	["Bulbasaur"] = {
		["Name"] = "Bulbasaur",
		["Description"] = "",
		["Type1"] = moduleScript.PokemonTypes["Leaf"],
		["Type2"] = moduleScript.PokemonTypes["Poison"]
	},
	["PokemonTypes"] = {
		"None",
		"Normal",
		"Fire",
		"Water",
		"Electric",
		"Grass",
		"Ice",
		"Fighting",
		"Poison",
		"Ground",
		"Flying",
		"Phsychic",
		"Bug",
		"Rock",
		"Ghost",
		"Dragon"
	}
}

can you show the code inside the module?

I already fixed it thank you for answering.

oh ok, btw you have a type spelled wrong

it is Psychic

1 Like