SimpleAdmin Pro | The easiest way to manage your game externally! [via discord or API]

Wait this is external? Oooooooooooooooooooooooooooooooooooooooooooooooooohhhhhhhhhhhhhhhhhhhhhhhhhhh man

@crywink I am exteremly sorry. I thought the console in the video was a plugin tab. I had no idea it was an external application, I didn’t fully read the title

Yeah, of course. This was just a misunderstanding

2 Likes

Hey! I sent you a message with a couple questions following up on your comment.

It’s alright :slight_smile:

1 Like

Update 1.5.6

+ Warning system now utilizes the API - you can view, add, and delete warns on Discord and they'll apply in-game (and vice versa).
1 Like

I like the idea, but it costs too much. 50 USD on a ROBLOX product.

3 Likes

Yes, I do agree with this because 50 USD is a great amount of money to be spending on an online platform. I do believe this product has very much potential because I use it in most of my games, and I totally love the clean, custom UI Design with the neat scripting. I would totally buy the Pro version if it was a little cheaper. I currently use the regular version.

50 USD is for one year of access, you can pay monthly for 5 USD. The product is simply API access, which all pro users have access to (plus a Discord bot). We charge this amount to be able to maintain our servers and to pay the staff who work on the systems within SimpleAdmin.

We at this time do not believe 5 USD is too much for people to pay for this especially when weighing server/revenue.

If you have any additional questions feel free to ask me or @crywink in the SimpleAdmin Discord server: https://simpleadm.in

I like it very much. But, yes like everyone else paying for pro is just for the revenue.

I highly recommend and love to use this product. Running a group and game requires a lot of moderation, the amount of time saved on Roblox moderation is invaluable.

1 Like

1.7.5 came with the ability to implement your own SimpleAdmin Pro commands to interact with your own game from Discord. Here’s how you can do it with a package!

Code:

Server, Service = nil, nil

return function()
    -- Server.CustomProRequest will be automatically added to the environment when you install Pro.
    Server.CustomProRequest:Connect(function(Action, Target) -- You can have as many arguments as you'd like.
        if Action == "kill" then
            Target = Service.Players:FindFirstChild(Target)
            
            if Target then
                Target.Character.Humanoid.Health = 0
            end
        end
    end)
end

Now, say there’s someone in-game named “Bob” that I want to kill, I would simply do…

Here’s an example of this in-use:

1 Like

I mean, why money?
I could make my own, or just get HD admin/kohls admin…
Maybe I wouldnt make this money, as people could make this themselves.

1 Like

Read through this! :slight_smile:

Remember you’ll also be paying for a VPS to host your server if you decided to make your own.

But what would I be hosting? Wouldnt all this be possible, for free?

You should read through the original post before making a comment.

1 Like

These are the features, and which of them (If I made it myself) would I pay for?

You cannot communicate from roblox to discord and vice versa without a web server. We’re the only admin system that offers this as well. Neither Kohls nor Adonis can do this. If you’d like to further this conversation, I would love to talk to you in our Discord.

Ive done it before with a feedback system. I dont think I paid for anything (Cant remember)

He is paying a web hosting, since http requests are being handled for Roblox communication. That’s why it is payed, maybe a free hosting service should solve, but it would not have the same security/availability. And I am almost sure it would not be possible without hosting it.

3 Likes

I think you might be confusing this system with Discord webhooks, which posts messages.

Since it’s a Discord bot (which requires hosting) and a Roblox game communicating with the bot via a web, Pro would definitely cost money to maintain the service so it doesn’t go down.

1 Like

Yes, sorry I am getting confused with that.
Yes, I understand its value for money, and I might think of buying it

2 Likes

I made something like this on my own, I could kick ban checkban, execute lua and everything from discord. I also made a feature to do it all from a website.