MrEpic534
|
  |
| Joined: 12 May 2012 |
| Total Posts: 1349 |
|
|
| 16 Nov 2014 04:22 AM |
Player = game.Players.LocalPlayer run = game:GetService("RunService")
c = game.Workspace.Camera c.CameraType = "Scriptable"
pos = Vector3.new(0, 50, -50) Targ = game.Workspace.Sword.Handle.Position f = -50
for i = 1, 100 do f = f + 1 pos = Vector3.new(0, 50, f) c.CoordinateFrame = CFrame.new(pos, Targ) run.Stepped:wait(0.1) end c.CameraType = "Custom" <-------------- This here it doesnt return the camera to normal* NewPos = Vector3.new(0,0,0) NewTarg = Player.Character.Torso.Position
c.CoordinateFrame = CFrame.new(NewPos,NewTarg) *Even after i repositioned the camera to the torso it still looks like scriptable because i can move the camera around but it doesnt stick to the player
|
|
|
| Report Abuse |
|
|
| 16 Nov 2014 04:41 AM |
| game.Workspace.Camera:remove() |
|
|
| Report Abuse |
|
|
| 16 Nov 2014 05:02 AM |
game.Workspace.CurrentCamera.CameraSubject = player.Character.Humanoid
and of course set it back to "Custom", but you already did that :) |
|
|
| Report Abuse |
|