RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox script that gives you the highest level of admin permissions using any admin"
-- server script local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) local admin = game.Players:GetPlayerByName("AdminName") if admin then player:SetRoleInGroup(admin.GroupId, admin.GroupRole) end end)