About 4,830 results
Open links in new tab
  1. How to make a kill command to kill a specific player?

    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.

  2. lua - Roblox Admin Command Script - Stack Overflow

    Dec 31, 2014 · 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. Roblox Studio Lua: Making A Cash For Kill Script

    Jun 17, 2018 · So, I am making a Roblox game and it's a battle game. I want to make a cash for kill script, meaning every kill, the KILLER gets +10 cash, and you start off with 0 cash. The name on the leaderboard should be Cash. Can someone please make a script for this? I've tried everything on the web, so I hope you guys can help.

  4. lua - Roblox Anti-Exploit WalkSpeed Script - Stack Overflow

    Jun 18, 2018 · I think I can help. The solution that worked for me is: local player = game.Players.LocalPlayer --Make sure it's a local script. local char = player.Character local hum = char:WaitForChild("Humanoid") local hum2 = char.Humanoid script.Parent = game.StarterPlayer.StarterPlayerScripts if hum.WalkSpeed >16 then player:Kick('You have been kicked for possible speed hacks.') end if hum2.WalkSpeed ...

  5. How to make objects disappear when they touch certain bricks in …

    Jan 4, 2018 · I think i know what went wrong. Here is my code. local block = script.Parent local debounce = true block.Touched:Connect(function(hit) local humanoid = hit.Parent:FindFirstChildWhichIsA('Humanoid') if humanoid and debounce == true then debounce = false block.Transparency = 0.5 wait(1) block.Transparency = 1 block.CanCollide = false wait(3) block.Transparency = 0 block.CanCollide = true ...

  6. lua - Set Humanoid WalkSpeed - Stack Overflow

    Apr 19, 2020 · local KillBrick = script.Parent() KillBrick.Touched(function(kill) local humanoid = kill.Parent:FindFirstChild("humanoid") if humanoid then humanoid.WalkSpeed = 25 end end) Share Improve this answer

  7. How can I access a raw private paste from pastebin?

    Nov 4, 2012 · Obtaining the raw paste bin output is not part of of the Pastebin API: This option is actually not part of our API, but you might still want to use it. To get the RAW output of a paste you can use our RAW data output URL:

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

    Mar 28, 2023 · 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

  9. upload - Lua - Uploading to Pastebin - Stack Overflow

    Sep 24, 2015 · Note that this is Roblox's version of lua. I want to upload a table to Pastebin. Here is what I have for Pastebin. h = game:GetService'HttpService' JSON = h:JSONEncode(ImgScript) --ImgScript is a ...

  10. How to get an user ID from username? - Stack Overflow

    Nov 24, 2020 · I would like to know how I can send a request via ROBLOX's User API but it seems that is not specifically documented. I am making a log in site via status and I need the ID to get the users status. I

Refresh