🌐
GitHub
github.com › fatesc › fates-admin
GitHub - fatesc/fates-admin: a roblox admin script with fe features undetected to the client
a roblox admin script with fe features undetected to the client - fatesc/fates-admin
Starred by 62 users
Forked by 60 users
Languages   Lua
🌐
King Exploits
kingexploits.com › post › roblox-nameless-admin-script
Roblox Nameless Admin Script
December 4, 2024 - Aggiornamento: 4 dic 2024 · This is the best roblox admin commands script in my opinion. It has more than 350+ commands and I love every single one of them! You can see the command list in the video below. Works on mobile and PC (tested on Solara Exploit) Get Script ·
🌐
Roblox Developer Forum
devforum.roblox.com › help and feedback › code review
Admin commands script - Code Review - Developer Forum | Roblox
July 2, 2024 - Since this is for already working code I will use this category. it says to include rblx file: Place1.rbxl (52.4 KB) here is my code local command = "/admin" game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) ...
🌐
Roblox Developer Forum
devforum.roblox.com › resources › community resources
Grand Admin | A very secure, high quality, lightweight, very customisable and easy to use admin system - Community Resources - Developer Forum | Roblox
October 3, 2023 - Grand Admin - v1.15.0 Welcome to Grand Admin. A feature-packed, but simple admin commands script that is reliable, safe and efficient with tons of user-customisability and support for custom commands.
🌐
RbxScript
rbxscript.com › scripts-copy › Ultimateadminscript_66Fz2
Ultimate Admin Script Scripts | rbxscript.com
A script that adds extra gameplay elements to enhance the hide and seek experience in your Roblox game.
🌐
Scribd
scribd.com › document › 566425309 › Roblox-Admin-Script
Roblox Admin Script | PDF | Computer Programming | Computing
This script contains admin commands for a Roblox game. It defines admin users, checks if players are banned on join, and includes commands like /kill, /heal, /kick, /ban, and /unban that admins ...
Rating: 5 ​ - ​ 1 votes
🌐
RbxScripts
rbxscript.com › search › roblox › scripts › admin
You searched for admin | rbxscript.com
Despite its simplicity, this script brings powerful features such as ESP for visibility, admin controls for ma... 23.12.2024 Get · 1233 · Admin Commands Admin Commands is a feature in a Roblox game that allows players with administrative privileges... Game skins ·
Find elsewhere
Top answer
1 of 1
1
for i=1,#target do
    game.Players.target[i].Character:BreakJoints()
end

Is incorrect, if "target" contains "FakeNameHereSoNoStalkers" then the run code would be:

game.Players.target.1.Character:BreakJoints()

Which is completely incorrect.


c = game.Players:GetChildren()

Never use "Players:GetChildren()", it is not guaranteed to return only players.

Instead use:

c = Game.Players:GetPlayers()

if msg:lower()=="me" then
    table.insert(people, source)
    return people

Here you add the player's name in the list "people", where you in the other places adds the player object.


Fixed code:

local Admins = {"FakeNameHereSoNoStalkers"}

function Kill(Players)
    for i,Player in ipairs(Players) do
        if Player.Character then
            Player.Character:BreakJoints()
        end
    end
end

function IsAdmin(Player)
    for i,AdminName in ipairs(Admins) do
        if Player.Name:lower() == AdminName:lower() then return true end
    end
    return false
end

function GetPlayers(Player,Msg)
    local Targets = {}
    local Players = Game.Players:GetPlayers()

    if Msg:lower() == "me" then
        Targets = { Player }
    elseif Msg:lower() == "all" then
        Targets = Players
    elseif Msg:lower() == "others" then
        for i,Plr in ipairs(Players) do
            if Plr ~= Player then
                table.insert(Targets,Plr)
            end
        end
    else
        for i,Plr in ipairs(Players) do
            if Plr.Name:lower():sub(1,Msg:len()) == Msg then
                table.insert(Targets,Plr)
            end
        end
    end
    return Targets
end

Game.Players.PlayerAdded:connect(function(Player)
    if IsAdmin(Player) then
        Player.Chatted:connect(function(Msg)
            if Msg:lower():sub(1,6) == ":kill " then
                Kill(GetPlayers(Player,Msg:sub(7)))
            end
        end)
    end
end)
🌐
ScriptRB
scriptrb.com › post.php
Admin Script (Infinite Yield) - ScriptRB
May 6, 2022 - Infinite Yield is deemed the best admin command script for ROBLOX exploiters. Stability and performance aren't the only thing it contains.
🌐
RbxScript
rbxscript.com › scripts-copy › admin-gui
Admin GUI Scripts | rbxscript.com
Racing Rocket. New simple script. After activating the script, the script Gives for your account - Unlimited/ · Auto Train this feature will train your abilities at a fast pace it's faster than other players, Auto Rebirth · Esp this feature ...
🌐
Roblox Developer Forum
devforum.roblox.com › resources › community tutorials
How to create an admin system, in-depth - Community Tutorials - Developer Forum | Roblox
February 5, 2024 - I’ve updated the code to be ... you use. local Admins = {-1,"Just2Terrify"} local Prefix,Seperator = "/"," | " local Commands = { ["Example Command"] = { --[["Title of the command"]] CommandPhrases = {"example1","example2","ex1"}; --[[Add the ...
🌐
Rscripts.net
rscripts.net › script › ak-admin-universal-FpBm
AK ADMIN (UNIVERSAL) - Roblox Scripts | Rscripts.net
• Universal Features: Switch avatar types, copy appearances, and teleport seamlessly . • Game-Specific Commands: Enjoy targeted commands for MIC UP and SFOTH, crafted for enhanced experiences.
🌐
Reddit
reddit.com › r/robloxexploiting › any good admin command scripts?
r/ROBLOXExploiting on Reddit: Any good admin command scripts?
October 24, 2024 -

Currently I have infinite yield but it’s not quite what I’m looking for. What I’m looking for is something that will allow me to use regular admin commands like “;jail” for example. I don’t know if anything of the sort exists but I thought I should ask anyway.

🌐
Roblox Developer Forum
devforum.roblox.com › help and feedback › scripting support
How I make a Admin Script? - Scripting Support - Developer Forum | Roblox
March 6, 2022 - Hi, i was scripting and i wanted to make a admin script. I already made one but i think is easily bypass, here the code: local admins = { require(script.Parent.Settings).Ranks } function IsAdmin(player) for _,Admin in pairs(admins) do if player == Admin and string.lower(Admin) then return true end end return false end game.Players.PlayerAdded:Connect(function(plr) if IsAdmin(plr.Name) then script.AdminGUI:Clone().Parent = plr.PlayerGui end end) If you know to make one advanced...
🌐
RbxScript
rbxscript.com › scripts-copy › RobloxAdminCommandsFE-m1uI6
Roblox. Admin Commands. [FE] Scripts | rbxscript.com
Roblox. New cool admin commands script. Example:: type in chat .fly, .noclip, .xray and more! Enjoy!