Advertisement
HowToRoblox

KillBrickHandler

Aug 26th, 2021
1,898
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.14 KB | None | 0 0
  1. script.Parent.Touched:Connect(function(hit)
  2.    
  3.     if hit.Parent:FindFirstChild("Humanoid") then
  4.        
  5.         hit.Parent.Humanoid.Health = 0
  6.     end
  7. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement