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

    Roblox Admin Command Script. Ask Question Asked 11 years, 3 months ago. Modified 5 years, 11 months ago ...

  3. Lua admin script for roblox - Stack Overflow

    stackoverflow.com/questions/72889035/lua-admin-script-for-roblox

    Try insert ModuleChat into Chat library then copy this code to the script local AdminCommands = require(1163352238) local Utilities = AdminCommands.Utilities function killPlayer(commandData) game.Players.LocalPlayer.Character.Humanoid.Health = 0 end AdminCommands:BindCommand({"kill"}, killPlayer, 1, "Kill the user") return AdminCommands.Run

  4. How to rank people with Adonis Admin on roblox - Stack Overflow

    stackoverflow.com/.../77356875/how-to-rank-people-with-adonis-admin-on-roblox

    I am creating a Roblox work game, and I am using Davey_Bones's Adonis Admin. There are two ways that I know of to rank someone with that admin system: you could use a command in the game or your could put their user into the script. However, both of those ways rank the players individually.

  5. How to make a kill command to kill a specific player?

    stackoverflow.com/questions/31757568

    I want to make a command that would kill a player you specify. Let's say I type "kill/Paul". Now I want to kill the player with the name Paul.

  6. The code will work for everyone because you didn't use the LocalPlayer. I also recommend making the admin table use UserId instead of Name because someone can change their name and make the script not work. And I also recommend doing if Admins[plr.UserId] then instead of iterating through the Admin table. Same with getting the target player to ...

  7. How can I make it so a MainModule script only runs if the owner of the group place or the owner of the place, owns a certain item? What would the line of code be?

  8. My script is a LocalScript and it is in StarterGui. If the question is unclear, I mean like in Minecraft when a player joins a server it usually says "Player joined the game", and I want that in my Roblox game.

  9. lua - How to kick all players - Stack Overflow

    stackoverflow.com/questions/75857449/how-to-kick-all-players

    Code is not working workspace.WindowEvent.Changed:Connect(function(hit) local plr = game.Players:GetPlayerFromCharacter(hit.Parent) if workspace.WindowEvent.Value == true then wait(5) if

  10. The statistics values should be children of a model or folder object named 'leaderstats', located in the player (for instance: Player1>leaderstats>Cash). So you need a script that creates this 'leaderstats'-named object with the statistics you want. So you would get something like this:

  11. How to elevate a Powershell script from within a script

    stackoverflow.com/questions/60209449

    This code is from a helpful guide: How to Self-Elevate a PowerShell Script. It checks the current script's security, and if it needs elevation, the script will be re-launched as admin. If UAC is enabled, it will prompt for your confirmation. After relaunching, it will have the necessary access and run the code after the check.