Answers for "roblox how to detect human touchinhg"

Lua
0

roblox how to detect human touchinhg

--only for roblox obv
script.Parent.Touched:connect(function(hit)
	if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
		--code
	end
end)
Posted by: Guest on March-20-2021

Browse Popular Code Answers by Language