[Solved] Discord.NET How can I give every person a role by one command?

You can do it using the code below. There are various ways of improving the command’s functionality so perhaps think about that. [Command(“addrole all”), Summary(“Adds the Star role to all users”)] public async Task AddRoleStarCommand() { // Gets all the users of the guild. Note that this may not completely // work for extremely large … Read more

[Solved] Discord bot playing status

Try This: public class Help : ModuleBase<SocketCommandContext> { [Command(“test”)] public async Task TestAsync() { await Context.Client.SetGameAsync(“eating doritos”); await Task.CompletedTask; } } solved Discord bot playing status