Untitled

mail@pastecode.io avatar
unknown
lua
5 months ago
212 B
3
Indexable
local function onTouch(hit)
	local character = hit.Parent
	local humanoid = character:FindFirstChild("Humanoid")
	
	if humanoid then
		humanoid.Health = 0
	end
end

script.Parent.Touched:Connect(onTouch)
Leave a Comment