roblox bagaimana mendeteksi touchinhg manusia

--only for roblox obv
script.Parent.Touched:connect(function(hit)
	if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
		--code
	end
end)
Odd Octopus