Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

Roblox Studio Instant Kill Brick Script

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

script.Parent.Touched:connect(kill)
 
PREVIOUS NEXT
Tagged: #Roblox #Studio #Instant #Kill #Brick #Script
ADD COMMENT
Topic
Name
5+8 =