enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. lua - Roblox Admin Command Script - Stack Overflow

    stackoverflow.com/questions/18070278

    I'm currently trying to make a new admin command script; all I have so far is the kill command... everything I've tried (so far) works unless I use the ":* me" parameter ("*"being any command and ":" being the recognition character. I don't quite understand why this doesn't work.

  3. Grand Admin | A very secure, high quality, lightweight, very ......

    devforum.roblox.com/t/grand-admin-a-very-secure-high-quality-lightweight-very...

    Grand Admin - v1.13.1 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. This script was originally only made for myself and some friends, but as I kept developing this admin script, it became genuinely useful to me and preferred amongst some people I have shown this ...

  4. SR Admin // A Efficient, Powerful & Safe Administrative System...

    devforum.roblox.com/t/sr-admin-a-efficient-powerful-safe-administrative-system...

    Hi there y’all! Name’s Scripter_Rickster (or you can just call me Rick). I noticed that there isnt many admin panels (for free) on the Roblox platform therefore I decided to create a admin panel. I introduce to you, the 'SR Admin Panel, a admin panel that is extremely easy to use and setup whilst being a efficient and a definitely useful admin panel. The panel is extremely customizable as ...

  5. Adonis Admin Setup Guide for Developers - Community Tutorials ......

    devforum.roblox.com/t/adonis-admin-setup-guide-for-developers/1535122

    A Developer’s Guide to Setting up the Adonis Administration System Written By: @Expertcoderz, Adonis Maintainer on GitHub Thanks to @ar_qx for the original guide. This is intended to be a more comprehensive and polished version. 📄 Preface Adonis is a major open source administration and moderation system for ROBLOX games, distributed under the MIT license. Some features of Adonis include ...

  6. require(0xC0FF3BAD) -- Easy instant cmds - Roblox

    devforum.roblox.com/t/require0xc0ff3bad-easy-instant-cmds/870873

    C0FF3BAD (pronounced “coffee bad”) is an easily loadable chat commands module with convenient features. The other day, I found out you can type numbers as Hex code in lua. You simply use preface the number with 0x. Ex: 0xA is the same as writing 10. That gave me an idea. I don’t know about you, but I often don’t add an Admin Commands script to my places. I see it as unnecessary, until ...

  7. Advanced Admin Script Showcase - Creations Feedback - Roblox

    devforum.roblox.com/t/advanced-admin-script-showcase/991733

    Hello! Today I will showcasing my admin that I have been working on for around a month now. I didn’t give it a name because I can’t think of one. It has features other admins don’t have. Let’s get started! So let’s start off with the basic features. Speed, explode, light, bring, goto, kill, heal, damage, the basics. We also have some fire, unfire, r6, and some other basic stuff. We ...

  8. How to make basic admin commands - Community Tutorials - Roblox

    devforum.roblox.com/t/how-to-make-basic-admin-commands/59691

    The type of admin we are making automatically parses commands. This is preferable for two reasons: it’s faster to add commands, and it is more consistent. It is preferable to put your admin script in ServerScriptService instead of Workspace. ServerScriptService is designed for scripts, and Workspace is designed for physical objects.

  9. How To Make Admin Commands, A More In-Depth Guide: Part 1 -...

    devforum.roblox.com/t/how-to-make-admin-commands-a-more-in-depth-guide-part-1/...

    Around a year ago, I made this tutorial, with little knowledge. A year later, I bring to you this tutorial; a much more in-depth guide to making admin commands. Parsing First of all, how do scripts read commands? There’s many ways, but I use message:split(" ") to get the arguments from the command. Let’s say we have this command: :speed me 100 We read if it starts with a colon (:). If it ...

  10. Korblox & Headless Script - Community Resources - DevForum |...

    devforum.roblox.com/t/korblox-headless-script/2699479

    I made a simple script to be used to toggle korblox & headless in your games. When a user toggles headless or korblox off, it will reset their head/leg to their current one they are wearing, unless it is headless/korbox, then it will reset to the default head/leg. --> Services local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") --> remotes ...

  11. Owner/Admin weapons - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/owneradmin-weapons/2849209

    here is an example script I made that may help you. -- // Declared Services local Players = game:GetService("Players"); -- // Private Variables local Whitelisted = {1, 111, 111} -- Example IDS (Replace or add with your IDs -- // Functions local function NewPlayer(player: Player) if table.find(Whitelisted, player.UserID) then -- GIVE WEAPON HERE ...