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)