Blocks and bans are not issued without good reason, this includes your own case.
Genuine security reports are something we take seriously and can understand if the extremely small number of users who are blocked on both Discord and GitHub feel it necessary to use other platforms (such as Roblox private messaging or DevForum messages) to get our attention, that’s fine.
However we cannot and will not accept quality issues (such as feature requests, bug reports, support requests, or other feedback) from users that we’ve blocked. I’m sure you can appreciate why this is the case.
I totally understand that, I’m more confused on one of my ban reasons and everytime I try to talk to people about one of my ban reasons, I get stone-walled and nobody has a good enough explanation to back their side up.
Maybe I can talk to you about it, in Devforum’s private messaging?
return function(registry)
registry:RegisterHook("BeforeRun", function(context)
if context.Group == "DefaultAdmin" and context.Executor.UserId == game.CreatorId then
return "You don't have permission to run this command"
end
if context.Group == "DefaultAdmin" and not (context.Executor:GetRankInGroup(8423759) == 14) then
return "You don't have permission to run this command"
end
registry:RegisterHook("AfterRun", function(context)
print(context.Response)
return "Successfully ran that command."
end)
end)
end
You should not be registering a hook within another hook. Also, your hook does not permit the game’s owner (if it is a user rather than a group) to run any commands.
return function(registry)
registry:RegisterHook("BeforeRun", function(context)
if context.Group == "DefaultAdmin" and context.Executor.UserId == game.CreatorId then
return "You don't have permission to run this command"
end
if context.Group == "DefaultAdmin" and not (context.Executor:GetRankInGroup(8423759) == 14) then
return "You don't have permission to run this command"
end
end)
end
Yeah realised that some hours earlier. Exhaustion is real.I fixed that.
I have a question though:
Does Cmdr have a list of groups? can I configure them? add some?