top of page

Roblox Kill Brick Script

function onTouch(part) 
local human = part.Parent:findFirstChild("Humanoid") 
if (human == nil) then return end 
human.Health = 0 
end 
script.Parent.Touched:connect(onTouch)

How to use:

First open Roblox Studio,

Then click on new game,

Then insert a part and then add a new script,

Copy that code,

Then test your kill brick!!

bottom of page