of     1   

BloxBuilder900
#37329653Sunday, November 21, 2010 1:01 PM GMT

local bin = script.Parent local char = script.Parent.Parent.Parent.Character local carCreated = false local owner = workspace.CurrentCamera function setCamera(subject, time) while true do wait(time) owner.CoordinateFrame = subject.CFrame end end local function hSelect(m) local function bdown() print("Button1Down") local car = game.Lighting.Car:clone() if car ~= nil and char ~= nil and carCreated ~= true then car.Parent = workspace car:moveTo(char.Torso.Position + Vector3.new(5, 5, 5)) owner.CameraSubject = car.Spoiler owner.CameraType = "Follow" carCreated = true wait(2) thread = coroutine.create(setCamera) assert = coroutine.resume(thread, car.Spoiler, 0.1) print(coroutine.status(thread)) else return end end m.Button1Down:connect(bdown) end bin.Equipped:connect(hSelect) Whenever I spawn the car, after a while y screen goes white. The ROBLOX Client, I mean :\
BloxBuilder900
#37329964Sunday, November 21, 2010 1:13 PM GMT

Second thread I make and no reply yet ç_ç
BloxBuilder900
#37330043Sunday, November 21, 2010 1:16 PM GMT

Meh gonna play Burnout for a while... Hope to see some replies >_<
Notunknown99
#37330057Sunday, November 21, 2010 1:17 PM GMT

Its because you broke the cameras CoordianteFrame
badcc
#37331060Sunday, November 21, 2010 1:49 PM GMT

True Notunknown, True
BloxBuilder900
#37334437Sunday, November 21, 2010 3:18 PM GMT

Meh, what now then ? XD
yoyoman2
#37335017Sunday, November 21, 2010 3:31 PM GMT

you forgot to put the "subject" as a object or anything else thats why the camera dosent know what you mean bye subject so it goes off world
BloxBuilder900
#37336097Sunday, November 21, 2010 3:55 PM GMT

@yoyo I did assert = coroutine.resume(thread, car.Spoiler, 0.1) car.Spoiler
MrNicNac
#37336186Sunday, November 21, 2010 3:57 PM GMT

This usually happens when the CoordinateFrame goes into -1#INF or what ever it is following hits too high of a velocity.
BloxBuilder900
#37337027Sunday, November 21, 2010 4:14 PM GMT

What should I do then ? >_<
MrNicNac
#37337104Sunday, November 21, 2010 4:15 PM GMT

I suggest complaining, uselessly, to the developers in hopes of them explaining it further and possibly fixing it.
BloxBuilder900
#37337277Sunday, November 21, 2010 4:19 PM GMT

T^T But howcome other peoples did it to get a camera stuck on something :\
MrNicNac
#37337386Sunday, November 21, 2010 4:21 PM GMT

To get it stuck on an object all you need it this, local Camera = Workspace.CurrentCamera Camera.CameraSubject = Object Camera.CameraType = Enum.CameraType.Attach
BloxBuilder900
#37337925Sunday, November 21, 2010 4:31 PM GMT

Thanks MNN, but I still can zoom in and out. Is it possible to make it unzoomable ?
sammydbull
#37341128Sunday, November 21, 2010 5:25 PM GMT

Change CameraType to Watch or Whatever you feel is needed. maybe Fixed

    of     1