of     1   

Aase69Ball
#36881021Friday, November 12, 2010 1:02 PM GMT

http://www.roblox.com/Ball-Test-item?id=38692096 This ball works perfectly the way I want in solo mode. However, it's a REALLY laggy camera in online mode :O Are there any way to fix this?
Mozi111
#36881342Friday, November 12, 2010 1:24 PM GMT

Post the script? This is kinda request because you are requesting for all the script...
Aase69Ball
#36881601Friday, November 12, 2010 1:45 PM GMT

@Mozi111 I'm asking HOW I could make the camera smooth. Here are the parts you need from the script: local hUp, uUp, kUp, jUp = true, true, true, true script.Parent.Selected:connect(function(mouse) script.Parent.Parent.Parent.Character.Humanoid.PlatformStand = true local ball = Instance.new("Part", Workspace) ball.Position = Vector3.new(0,5,0) ball.Shape = "Ball" ball.Name = "Ball" ball.Size = Vector3.new(6,6,6) Workspace.CurrentCamera.CameraSubject = ball Workspace.CurrentCamera.CameraType = "Track" --Jumping to last part turnIndex = 0 while wait() do if not hUp or not uUp or not kUp then turnIndex = not hUp and uUp and kUp and 90 or hUp and not uUp and kUp and 0 or hUp and uUp and not kUp and -90 or not hUp and not uUp and 45 or not uUp and not kUp and -45 or 0 --Angle the ball will move in local lookVector = (Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(0, math.rad(turnIndex), 0)).lookVector * 30 --print(Workspace.CurrentCamera.CoordinateFrame.lookVector, "||", lookVector) ball.Velocity = Vector3.new(lookVector.X, ball.Velocity.Y, lookVector.Z) end end end)
Thismaddhouse
#36881837Friday, November 12, 2010 2:03 PM GMT

@aase69ball ??? look at title Are you asking why the script don't work?????
MrNicNac
#36881838Friday, November 12, 2010 2:03 PM GMT

You can't, naturally it takes .092 of a second to change the camera's coordinate frame in a while loop. You are adding an if statement, making it a bit longer and more rigid. There is no way to do this smoothly.
Thismaddhouse
#36881880Friday, November 12, 2010 2:07 PM GMT

@ mrnicnac SO your saying that the script would be useless anyway
MrNicNac
#36881899Friday, November 12, 2010 2:08 PM GMT

I don't know or care for its uses, but it won't work the way he wants it to.
Thismaddhouse
#36881907Friday, November 12, 2010 2:09 PM GMT

Ok i get you now
aase69
#36882051Friday, November 12, 2010 2:20 PM GMT

So.... What about putting a humanoid inside it? Wouldn't that help??
Thismaddhouse
#36882098Friday, November 12, 2010 2:25 PM GMT

Most possibly not.... but give it a try
WK100
#36883842Friday, November 12, 2010 3:59 PM GMT

How about making the camera move slowly to the target?
aase69
#36895305Friday, November 12, 2010 9:44 PM GMT

Explain it a little more, WK :P
Thismaddhouse
#36926826Saturday, November 13, 2010 9:14 AM GMT

.. THATS IT THAT WIL WORK
Elite777
#36929034Saturday, November 13, 2010 12:35 PM GMT

Ok..

    of     1