function MonkeySckriptModule.move()
local character = workspace.Animals:FindFirstChild("Rig")
character.Humanoid:MoveTo(Vector3.new(0, character.PrimaryPart.Position.Y, 100))
end
Does not work in the module script when called but works in workspace with a normal script???
(also i did do ‘require’ to use the module and no errors were in the output)
I also used some print statements to check
Could someone help me. Thanks.