of     1   

eXoguti097
#35842965Saturday, October 23, 2010 12:25 AM GMT

How.... do i make the script like "point" at the angle i want, like in the size of a brick is (5,8,6) and i want to just take the Z axis size and like multiply only the z axis size by 5 (this is not what im doing but its similar) how do you do that?
Zarcius
#35844376Saturday, October 23, 2010 12:50 AM GMT

Silly eXo... Scripts can't point at anything. They don't have arms or hands or fingers.
SUBVERTED
#35844495Saturday, October 23, 2010 12:52 AM GMT

[ Content Deleted ]
eXoguti097
#35845226Saturday, October 23, 2010 1:03 AM GMT

Thats why I said "point," i dont know the exact word for that.
SDuke524
#35845227Saturday, October 23, 2010 1:03 AM GMT

This is something known as lookVector script.Parent.CFrame = CFrame.new(v,l) v would be a vector3 value that says where the brick's position is l is another vector3 value of where the brick points example a = Instance.new("Part") a.Parent = workspace a.Anchored = true a.CFrame = CFrame.new(Vector3.new(10,10,10),Vector3.new(0,0,0))

    of     1