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

Would a Cutter brick work?

Asked by 10 years ago
script.Parent.Touched:connect(function(hit)
        if hit.Planks and hit.Name == "Log" then
            print("lol")
            planks = hit.Planks.Value
        for i = 1, planks do
            print("lol")
            part = Instance.new("Part")
            part.Position = hit.Postion.Vector3.new()
            print("lol")
        end
    end
end)

Im trying to write a script that when a Log touches the brick it cuts up into the amount specified by a intvalue in the Log named planks. Also. I cannot figure out how to make the brickcolor of the new part the same as the log.

0
print("lol") is just to bug test. YellowoTide 1992 — 10y

2 answers

Log in to vote
1
Answered by
bobder2 135
10 years ago

For the color just do:

part.BrickColor = hit.BrickColor

Make sure you set everything for the planks before you :Destroy() the log though, that way it's still there to copy the properties.

Ad
Log in to vote
0
Answered by
Rukiryo 25
10 years ago

Hi, You can just say

part.Position = hit.Position

The position of the part you hit is ALREADY a Vector3. You only need to say Vector3.new when you are creating a new vector3.

Answer this question