Hi.I am trying to make a cafè training center but I don’t want to have to manually rank the people if they pass the trainings.I was wondering if there could be something like
local passed = false
if passed == true then
— rank the player but I don’t know how to do that
end
The short answer is you cannot do it with the pure Roblox API and have to connect with an external, remote service.
This is usually done by sending an HTTP request to an external service/server that has software that will perform the action view either Roblox Web APIs or just replicate being a browser and perform the group actions manually.
It’s common that people use external services - which is what that video is showing. So you’re still right it is not possible with purely Roblox services right now.
However, you run the risk of liability. As soon as you start making games reliant on someone else’s external services, then the chance of them disappearing or failing is possible. Roblox themselves have a post about using other people’s services too heavily. Linked below