Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
3

Why wont this script work properly?

Asked by 9 years ago
1local part = script.Parent
2part.Touched:connect(function(hit)
3    if hit.Parent then
4        if hit.BrickColor == "Dark orange" and hit.Material == "Wood" then
5            hit.Parent.BrickColor = BrickColor.Black()
6        end
7    end
8end)

It's supposed to, when a part is made of dark orange wood, "burn" it. There are no errors in the output.

Thank you in advance for any help you may provide.

1 answer

Log in to vote
0
Answered by
yoshi8080 445 Moderation Voter
9 years ago

You forgot to check if a humanoid has checked it, you use ontouch function and get the parent of what hit it returning the humanoid.

1function onTouch(part)
2    local humanoid = part.Parent:FindFirstChild("Humanoid") -- used to find humanoid in player ontouch
3    local block = script.Parent
4    if (humanoid ~= nil) and block.Material == Enum.Material.Wood and block.BrickColor == BrickColor.new('Bright orange') then -- Enum to check material requirement, BrickColor.new for part color requirement
5        block.BrickColor = BrickColor.new('Black')
6    end
7end
8script.Parent.Touched:connect(onTouch)
Ad

Answer this question