of     1   

2sp00ky4y0u
#183597508Sunday, February 14, 2016 5:32 PM GMT

How do I make this: while wait() do to RenderStepped? Or I think he said lerp too how do I do that?
2sp00ky4y0u
#183604738Sunday, February 14, 2016 7:02 PM GMT

anyone?
super10099
#183605789Sunday, February 14, 2016 7:16 PM GMT

game:GetService("RunService").RenderStepped:connect(function() end)
super10099
#183605894Sunday, February 14, 2016 7:18 PM GMT

Or you can use heartbeat, which is 1/30 of a second game:GetService("RunService").HeartBeat:connect(function() end)
2sp00ky4y0u
#183610413Sunday, February 14, 2016 8:19 PM GMT

while wait() do camera.CoordinateFrame = CFrame.new(target.Position) --Start at the position of the part * CFrame.Angles(-95, 0, 0) --Rotate by the angle * CFrame.new(0, 0, 25) --Move the camera backwards 5 units end can you make the wait in that to RenderStepped?
cheesecake123456
#183610593Sunday, February 14, 2016 8:22 PM GMT

game:GetService('RunService').RenderStepped:connect(function() --code end)
ElectoStriking
#183610639Sunday, February 14, 2016 8:22 PM GMT

game:GetService("RunService").RenderStepped:connect(function() camera.CoordinateFrame = CFrame.new(target.Position) --Start at the position of the part * CFrame.Angles(-95, 0, 0) --Rotate by the angle * CFrame.new(0, 0, 25) --Move the camera backwards 5 units end) #Strikin'
cheesecake123456
#183610641Sunday, February 14, 2016 8:22 PM GMT

Just don't include the while wait() do
Protoduction
#183612923Sunday, February 14, 2016 9:00 PM GMT

Sorry guys game:GetService("RunService").RenderStepped:wait() only works in local scripts last time I checked. You're doing it wrong

    of     1