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

Disconnected event because of exception, why?

Asked by
thePyxi 179
9 years ago

I am new to scripting Lua on ROBLOX. I've been trying to code a Scriptable Camera but it keeps saying, in the Output window, "Disconnected event because of exception. I am testing in 'Solo Play' and Server Play. Why does it keep saying this phrase? Here's the script:

function onTouch(Part)

    run = game:GetService("RunService")
    c = Workspace.Camera
    c.CameraType = "Scriptable"
    Pos = Vector3.new(0, 50, -50)
    Targ = game.Workspace.Dead1.Torso.Position
    Zaxis = -50
    Zoom = 40
for tehloop = 1, 100 do
    if tehloop < 100 then   
    Zoom = Zoom -0.5
    c.FieldOfView = Zoom
    Zaxis = Zaxis +1
    Pos = Vector3.new(0, 50, Zaxis)
    c.CoordinateFrame = CFrame.new(Pos.Targ)
    else
    Zoom = Zoom -1
    c.FieldOfView = Zoom
    end
    run.Stepped:wait(0.1)
end
wait(10)
c.FieldOfView = 50
c.CameraType = "Custom"
end

GUIPBr.Touched:connect(onTouch)

If anyone can help me with this, that would be very helpful. Thank you!

0
Please edit your original question instead of asking a new one, in the future. adark 5487 — 9y
2
This should be a LocalScript and c should be `Workspace.CurrentCamera` Shawnyg 4330 — 9y

1 answer

Log in to vote
0
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
9 years ago

Like Shawnyg said, at line 5 in that block, you need Workspace.CurrentCamera.

As well, this has to be in a LocalScript to work.

Ad

Answer this question