Download ArticleDownload Article

Kill blocks are parts you can create as where a person steps on it, the user will die or lose a specific amount of health. On Roblox, it's very possible! To create a good game, you have to and should know the basics of Lua, and this article will teach you who to make a kill script, and hopefully improve your overall knowledge! So if you're interested in making a block kill a user when they touch it, read on!

Part 1
Part 1 of 3:

Installing Roblox Studio

Download Article

If you already have Roblox Studio installed, feel free to skip this section.

  1. How.com.vn English: Step 1 Head to the...
    Head to the Create tab (www.roblox.com/Create). You need to download Roblox Studio if you don't have it installed. Roblox Studio is the platform to create a game on Roblox, where all the games are created.
    • Roblox Studio is currently only available on Windows and Mac. You can download Roblox Studio on a Chromebook, but you will need Linux. Please note that Linux devices (excluding Chromebooks), mobile devices, consoles, etc. will not work and are not compatible.
  2. How.com.vn English: Step 2 Click Start Creating.
    It should be the very large button in the middle of the screen.
    Advertisement
  3. How.com.vn English: Step 3 Click Download Studio.
  4. How.com.vn English: Step 4 Open up the download when it is complete.
    This is the installation package.
    • On Chrome, click the bottom box and the bottom of your screen. It will automatically open. If you closed it, you can use Ctrl+J to check the download.
    • On Microsoft Edge, it will prompt you when it's done downloading.
  5. How.com.vn English: Step 5 Wait.
    A blue Roblox (Roblox Studio), will open up. It will tell you that it's installing. Depending on your network connection, the download time may vary, but it should be quick!
    • After it's complete, it might close, but don't worry. That's part of the process. When it closes, a new menu will open afterward!
  6. How.com.vn English: Step 6 Log in.
    After the installation menu closes, a new window will open up shortly. You'll see a log in menu.
    • In the Username box, fill in your Roblox username.
    • In the Password box, fill in your Roblox password corresponding to your account.
  7. Step 7 Click the "New" button on your left menu.
    In there, select any template you want!
    • Your template isn't too important, depending on what exactly you want your game to be like.
  8. How.com.vn English: Step 8 Wait for your game to open.
    It might take some time!
  9. Advertisement
Part 2
Part 2 of 3:

Setting Up Your Blocks

Download Article
  1. How.com.vn English: Step 1 Click Model when your game opens up.
    It should be located on the top menu. A "model" is a combined object of parts, but you only need a part to make a kill block.
  2. How.com.vn English: Step 2 Add a part.
    Click Part under the model tab. There should be a drop-down button once you click on it. Select the type of block you want to use.
    • It doesn't matter about the shape of the model. It all can be used as a kill block!
  3. How.com.vn English: Step 3 Find your model in the Explorer menu.
    The Explorer menu is the menu on the right side of your screen. Your part should be automatically named "Part." Find your part and click on it.
    • Remember to only click on it once.
  4. How.com.vn English: Step 4 Find the + sign right next to your part.
    It should be "Part +". Click on the +.
  5. How.com.vn English: Step 5 Click Script in the menu that pops up.
    It should look like a blue scroll.

    Warning! Remember to click Script, not Local Script or Module Script.

  6. Advertisement
Part 3
Part 3 of 3:

Scripting

Download Article
  1. Step 1 Delete the print("Hello World") that automatically appears.
  2. How.com.vn English: Step 2 Type in the below code.
    local trapPart = script.Parentlocal function onPartTouch(otherPart)local partParent = otherPart.Parentlocal humanoid = partParent:FindFirstChild("Humanoid")if humanoid thenhumanoid.Health = 0endendtrapPart.Touched:Connect(onPartTouch)
  3. How.com.vn English: Step 3 Close the script tab.
    There should be a "X" button below your top menu. Remember, only close script! Your script will save automatically.
  4. How.com.vn English: Step 4 Test out your model!
    In the Test tab on your top menu, click the blue Play. Touch the block and you'll notice that you died!
  5. Advertisement

Community Q&A

Search
Add New Question
  • Question
    Can you keep removing a certain amount of health or does it always have to kill you immediately?
    How.com.vn English: Alex
    Top Answerer
    In the line humanoid.Health = 0, you can change the 0 to match whatever health you want the player to be when they touch the block.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Tips


      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      About This Article

      AW
      Co-authored by:
      Alex Wang
      Roblox Player and Scripter
      This article was co-authored by Alex Wang, a trusted member of How.com.vn's volunteer community. Alex is an avid Roblox player who has been playing, creating, and scripting on Roblox and Roblox Studio since 2017. He is proficient in the Lua programming language and understands how the systems and servers work. He has worked alongside several groups and collaboration projects to help create Roblox games. This article has been viewed 54,584 times.
      25 votes - 88%
      Co-authors: 7
      Updated: November 30, 2023
      Views: 54,584
      Categories: Roblox
      Thanks to all authors for creating a page that has been read 54,584 times.

      Reader Success Stories

      • How.com.vn English: Luke B.

        Luke B.

        Jun 14, 2023

        "It worked and that's all I can say. Very simple explanation."
      Share your story

      Did this article help you?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement