RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a script wich lets me have admin at the game"
-- server script local Players = game:GetService("Players") local AdminGroupId = 123456789 -- Replace with your group id Players.PlayerAdded:Connect(function(player) if player:IsInGroup(AdminGroupId) then player.CharacterAdded:Connect(function(character) character:SetPrivateFacet("admin", true) end) end end)