|
| 25 Jun 2014 09:43 PM |
How do I change All the bricks posistion within a model in front of the player
onActivation()
c=game.Lighting.BARB:clone() -- Barb is a model c.Parent=game.Workspace c.Name="Barbarian" c.Position=script.Parent.Parent. -- How do I change the entire models position to in front of the player who is using the tool.
function onActivation() print("Tool activated") end tool.Activated:connect(onActivation) |
|
|
| Report Abuse |
|
|
| 25 Jun 2014 09:50 PM |
You use MoveTo or TranslateBy
TranslateBy offsets it though.
model:MoveTo(Vector3.new()) |
|
|
| Report Abuse |
|