Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do u make it spin from top horizontally ?

Asked by
Bulvyte 388 Moderation Voter
8 years ago

This script spins from left to right and goes on. I want this to spin from top horizontally how do i do this ? No matter what i change in my angles and mess with this doesn't work anyway.

This is how it rotates http://prntscr.com/bjj220 And this is how i want it to http://prntscr.com/bjj25j

NO ONE HAVEN'T ANSWERED THIS FOR 2 DAYS CMON PLEASE :(

local target = workspace.IntCam.Head
local camera = workspace.CurrentCamera
camera.CameraSubject = target
local angle = 5

while wait() do 
    camera.CoordinateFrame = CFrame.new(target.Position)
                                  * CFrame.Angles(0,angle,0)
                                 * CFrame.new(0,0,-30)
angle = angle + math.rad(.6)

end

0
Get rid of line 9. GoldenPhysics 474 — 8y
0
still no Bulvyte 388 — 8y

Answer this question