Roblox Kill Brick Script

[Solved] Roblox Kill Brick Script | Lua - Code Explorer | yomemimo.com
Question : roblox kill brick script

Answered by : muppet

function onTouched(part)	local h = part.Parent:findFirstChild("Humanoid")	if h~=nil then	h.Health = h.Health-100	end
end
script.Parent.Touched:connect(onTouched)
-- Put this in the part you want it to work in
-- Message me for anymore help #Muppet6931

Source : | Last Update : Fri, 05 Mar 21

Question : roblox how to make a kill brick

Answered by : tomsterbg

local killBrick = -- index your kill brick here
local function onTouched(hit)	local humanoid = hit.Parent:FindFirstChild("Humanoid")	if humanoid == nil then return end	humanoid:TakeDamage(humanoid.MaxHealth) -- doesn't kill if a ForceField is guarding the Character
end
killBrick.Touched:Connect(onTouched)

Source : | Last Update : Sat, 14 May 22

Question : kill brick script roblox

Answered by : motionless-manatee-bjtzd7svok3a

function onTouched(Obj)	local h = Obj.Parent:FindFirstChild("Humanoid")	if h then	h.Health = 0	end
end
script.Parent.Touched:Connect(onTouched)

Source : https://devforum.roblox.com/t/instantly-kill-on-brick-touch/375674 | Last Update : Sun, 06 Jun 21

Question : Roblox Studio Instant Kill Brick Script

Answered by : splendid-seahorse-pqmktlns9b0g

function kill(part)	local humanoid = part.Parent:FindFirstChild("Humanoid")	if (humanoid ~= nil) then	humanoid.Health = 0	end
end
script.Parent.Touched:connect(kill)

Source : | Last Update : Sun, 21 Aug 22

Answers related to roblox kill brick script

Code Explorer Popular Question For Lua