Answers for "check if child is touched roblox"

Lua
0

check if child is touched roblox

lcoal Model = workspace.Part
for _,v in pairs(Model:GetChildren()) do
	if v:IsA("BasePart") then
		v.Touched:Connect(onChildTouched)
	end
end
Posted by: Guest on January-17-2021

Code answers related to "check if child is touched roblox"

Browse Popular Code Answers by Language