i couldn't fit my qustion to long)
Why does the part change color when another part touches it i specified Humanoid can someone explain why it dosn't work?
script.Parent.Touched:Connect(function() script.Parent:FindFirstChild("Humanoid") script.Parent.BrickColor = BrickColor.new("Baby blue") end)
ur code wrong is wrong code Freddan I will use the limited information u give me to construct try and build code Freddan:
script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then script.Parent.BrickColor = BrickColor.new("Baby blue") end end)