@playDotProduct

Our next tutorial (Pet Hatching) will be out on Wednesday!

@stormkulit

script.Parent.Touched:Connect(function(hit)
           if hit.Parent:FindFirstChild("Humanoid") then 
        hit.Parent.Humanoid.Health = 0
         end
end)

@samgaming349

I DONE THE EXACT THING YOU TOLD ME AND IT DOESNT WORK AND WHEN I GO TO A DIFFERENT VID ABOUT HOW TO DO SOMETHING ELSE IT DOESNT WORK TO NOTHING WORKSSSSS

@beanii8913

hell yeah. bite sized videos like these will dominate the technical roblox scene if yall keep it up.

@Nuubzzz

the "ow that hurt" at the end tho, great acting cheeky grammy worthy

@CamixAxo

TYSM

@Starculation

What about a block to make everyone die apart from yourslef?

@wchand505

A..ma..zing! First vid I've seen of URS and so simple and easy subbed as soon as it worked!

@Vikyinnit

I love how this is in a short! It really helped and I hope you keep up the amazing work

@Salvationplays

THX MAN; it looks ez when you do it.

@Topaz_Dutchie

YES! Finally, an easy one that works

@King_Editz8092

Will the script come along with it if you duplicate the Kill brick?

@RandomDude1487

Copy/paste:
script.Parent.Touched:Connect(function(hit)
  if hit.Parent:FindFirstChild("Humanoid") then
    hit.Parent.Humanoid.Health = 0
  end
end)

@Gabriel-zd8iy

wow this is amazing
I'm so glad you explained each line of code that was really helpful to me. thanks!

@CrazyCheeseGirl

you can not put the if finds a humanoid because it would still work

@hydraaff7409

how to bypass it :
for i,v in pairs(getconnections(part.Touched)) do
v:Disable()
end

@chefacro4909

dude thank you for ur magic every tutorial i try i mess something up and you put it out in the most simple of terms so thank you

@zamithan

I like this jake guy let’s see more of him

@HaloManHM

u guys can try this:
function onTouched(Obj)
	local h = Obj.Parent:FindFirstChild("Humanoid")
	if h then
		h.Health = 0
	end
end

script.Parent.Touched:Connect(onTouched)

@Thatgirlkaia

THIS HELPED ME SM!!