function Morph:SeekFolder(Folder)
for i,v in pairs(self.MorphFolder:GetDescendants()) do
if v:IsA('Folder') then
if v.Name == Folder then
return v
end
end
end
end
local module = require(script.Parent.MorphModule)
module.new(game.ServerStorage.Morphs)
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
module:ApplyFullMorph(plr,"Chancellor",true)
end)
end)
Console:
Line 41 Function:
My code:
Explorer: