Pretty big eror message. Basically, i made a module that connects other modules in parallel. Pretty simple, right? Well, seems like it isn’t, because when i try to require another module (“MovementModules”) in a module that’s parented to an actor (“ParallelConnector”) it spits out this error message.
“MovementModules” has a function called “Dash” that at some point uses runservice.PreSimulation:ConnectParallel(…).
“InputReciever” asks ParallelConnector to connect the dash function in parallel.
“ParallelConnector” requires any module it’s given and runs a function that it was asked to run. In theory, because parallel connector is under an Actor, the required module SHOULD be able to :ConnectParallel, but for some reason it can’t…
Here’s the code.
-- InputReciever
local reciever = {}
local scriptapplied = false
local inputsend = game.ReplicatedStorage.clientbindableevents.sendInput
local loadedvalue = game.ReplicatedStorage.loadedmodules:WaitForChild("MovementModules"):FindFirstChild("AllMovementLoaded")
local parallelconnector = require(game.ReplicatedStorage.loadedmodules.ConnectorActor.ParallelConnector)
local movementmodulereference = game.ReplicatedStorage.loadedmodules.MovementModules
local movementmodule = require(movementmodulereference)
function reciever.GiveKey(inputname:string, timesent:number, activity:boolean)
if os.clock() - timesent > .5 then
warn("Error: input sent late. please report to dima!!")
else
if inputname == "MouseButton1" and activity == true then
parallelconnector.RunInParallel(movementmodulereference, "Dash") -- here we're using the thingy to connect the
end
if inputname == "E" then
if activity then
movementmodule.StartGrabCheck()
elseif not activity then
movementmodule.StopGrabCheck()
end
end
end
end
return reciever
--ParallelConnector
local connector = {}
function connector.RunInParallel(requiredmodule, functionindex)
require(requiredmodule)[functionindex]() -- Errors!!
end
return connector
I really gotta connect it in parallel cause i will have to use events like PreSimulation or Heartbeat a LOT in my game and i don’t want it to get laggy…
I think that there should be a way to restructure my scripts, yet i’ve looked at some posts and can’t quite find a solution that would help me. Please help.