Cmdr commands not always registering/loading

cmdr (this one) isnt always loading the commands, sometimes i open the bar and theyre there and sometimes not
i have the latest version and i have it installed exactly like in the docs (reinstalled 2 times too)
heres where it gets loaded

-- This is a script you would create in ServerScriptService, for example.
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Cmdr = require(ReplicatedStorage:WaitForChild('Cmdr'))

Cmdr:RegisterDefaultCommands() -- This loads the default set of commands that Cmdr comes with. (Optional)
Cmdr:RegisterCommandsIn(script.CmdrCommands) -- Register commands from your own folder. (Optional)
Cmdr:RegisterHooksIn(script.CmdrHooks)
2 Likes

Firstly, ensure that the Cmdr module is placed in ServerScriptService. Secondly, please check whether there are any instances of yielding in your command and/or hook modules.

Send images

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.