I’ve been searching over the dev forum but unluckily did not find a problem similar to mine and the ones who were sort of similar did not work. So basically am planning to give admin commands to the private servers owners. So that if they join their OWN private server, they get admin commands. I however am unaware of how to do this properly with the _G Adonis api and no other forum has this same problem, they show read data but not overrride data.
--// In Adonis_Loader > Config > Plugins > Server: GiveServerOwnerAdmin
return function()
service.Players.PlayerAdded:Connect(function(p)
if game.PrivateServerOwnerId == p.UserId then
server.Admin.SetLevel(p, 3)
end
end)
end
And this is temporary, aka only work in his private server and not in punlic servers? By the way, is there a way on how to change the datastore key for private servers?