100465
|
  |
| Joined: 17 Jun 2010 |
| Total Posts: 6353 |
|
|
| 11 Aug 2013 02:16 PM |
How would I have it rotate around the map?
I ran out of siggies, (Again) |
|
|
| Report Abuse |
|
Hibobb
|
  |
| Joined: 18 Apr 2010 |
| Total Posts: 2146 |
|
|
| 11 Aug 2013 02:20 PM |
Have this script in Workspace
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) script.LocalScript:Clone().Parent = character end) end)
Have this in a localscript inside of it.
local target = PARTHERE local camera = workspace.CurrentCamera camera.CameraSubject = target local angle = 0 while wait() do camera.CoordinateFrame = CFrame.new(target.Position) --Start at the position of the part * CFrame.Angles(0, angle, 0) --Rotate by the angle * CFrame.new(0,0,-5) --Move the camera backwards 5 units angle = angle + math.rad(1) end
|
|
|
| Report Abuse |
|