|
| 21 Apr 2012 07:40 PM |
while (true) do for i = 1,25 do game.Workspace.CurrentCamera.CameraType = 0 game.Workspace.CurrentCamera.CoordinateFrame = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(0.5,0.1,0.5) wait()
end end
^ So I just wrote that, and it works, my first Camera Manipulation Ever! But I was wondering, how can I make it start spinning and going up at a different position? |
|
|
| Report Abuse |
|
|
kools
|
  |
| Joined: 11 Jan 2009 |
| Total Posts: 1659 |
|
|
| 21 Apr 2012 07:42 PM |
| Eh. I don't know. I hope crazyman23 or Thoth can see this thread and help. I'm just going to help you and say ... bump. |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 07:42 PM |
| Lol, I used CM32's tutorial, thanks if you read this it was really helpful c: |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 07:57 PM |
Alright, I got it, you just set the camsubject
while (true) do for i = 1,25 do game.Workspace.CurrentCamera.CoordinateFrame = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(1.4,0,0) game.Workspace.CurrentCamera.Focus = CFrame.new(-20,27,0) game.Workspace.CurrentCamera.CameraSubject = game.Workspace.Shadow1 wait()
end end
^ That works very well, now I feel all proud of myself. c: |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 08:05 PM |
Ugh, why won't this clone that into the players startergui?
game.Players.PlayerAdded:connect(function(player) g = Workspace.Intro:clone() g.Parent = player.StarterGui end)
|
|
|
| Report Abuse |
|
|
| |
|
XNoBoomX
|
  |
| Joined: 08 May 2011 |
| Total Posts: 4731 |
|
|
| 21 Apr 2012 08:36 PM |
Where's Crazyman32's tutorial? I'd love to view it.
But, the copying issue is:
game.Players.PlayerAdded:connect(function(player) g = Workspace.Intro:clone().Parent = player.StarterGui -- That works best. end)
~{An Intellectual In Love With Bacon}~ |
|
|
| Report Abuse |
|
|
C0D3Y
|
  |
| Joined: 24 Jul 2010 |
| Total Posts: 1692 |
|
|
| 21 Apr 2012 08:45 PM |
In reply to the first post, all you do is change the camera's CFrame. For the spinning, use this: http://wiki.roblox.com/index.php/Camera_manipulation |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 08:49 PM |
| Go to roblox wiki theres alot of scripts and how to use tools. And your welcome. |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 08:51 PM |
| or you can just find a good yo9u9tube video, [remove the 9's] and type in how to script, theres really good examples. |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 08:52 PM |
@ strong, I know how to script, that has nothing to do with my problem
Which I fixed C=, Thanks @ C0D3Y |
|
|
| Report Abuse |
|
|
C0D3Y
|
  |
| Joined: 24 Jul 2010 |
| Total Posts: 1692 |
|
|
| 21 Apr 2012 08:56 PM |
| Np Contemptus, and @strong, I don't think you're welcome... |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2012 09:06 PM |
game.Players.PlayerAdded:connect(function(player) g = Workspace.Intro:clone() g.Parent = player.PlayerGui end)
It's "PlayerGui" not "StarterGui" |
|
|
| Report Abuse |
|
|