-- Split the message into arguments local args = string.split(message, " ") local command = string.lower(args[1]) local targetName = args[2]
Tag your script correctly (e.g., "FE Scripts," "Admin," or "Exploits").
Can I add my own scripts? Yes, If the script is working and has no problems, and is safe! Mail: scripts@scriptsrbx.com. ScriptsRBX The EASIEST Beginner Guide to Scripting (Roblox)
-- Helper Function: Check if player is an admin local function isAdmin(player) for _, adminName in ipairs(Admins) do if player.Name == adminName then return true end end return false end