I don't know how to do this somebody help? I have searched and searched but I cant get it right.
Ok, You need to be more specific, but I will try and help
1 | --This is the thing that you will touch and it will move the turret |
2 | Part = game.Workspace.Part |
3 | Turret = game.Workspace.Turret |
4 |
5 |
6 | Part.Touched:Connect( function (Thing) |
7 | --I do not know what you mean by: "in that position" but if you want it to go move to the part: |
8 | game.Workspace.Turret.Position = game.Workspace.Part.Position |
9 | end ) |