Advertisement
pwutdev

Kill Brick

Oct 10th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | Gaming | 0 0
  1. -- Kill Brick
  2. script.Parent.Touched:connect(function(hit)
  3.     if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
  4.         hit.Parent.Humanoid.Health = 0
  5.     end
  6. end)
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement