Answers for "Roblox How to make a killPart"

0

Roblox How to make a killPart

-- Paste this into a local script inside a part
script.Parent.Touched:Connect(function(hit)
	if hit.Parent:FindFirstChild("Humanoid") then
		hit.Parent.Humanoid.Health = 0
	end
end)
Posted by: Guest on March-22-2021

Code answers related to "Roblox How to make a killPart"

Browse Popular Code Answers by Language