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

How to make a new Camera everytime someone jumps up from a seat?

Asked by 4 years ago
game.Workspace.Seat1.DescendantRemoving:Connect(function()

    local camera = Instance.new("Camera")
    local subject = camera.CameraSubject
    subject = game.Players.LocalPlayer.Character.Humanoid


end)

This is a LocalScript inside a Seat, btw. Any help appreciated. Thank you :)

1 answer

Log in to vote
0
Answered by 4 years ago
Edited by DeceptiveCaster 4 years ago

I'm not entirely sure, but maybe you could do this:

game.Workspace.CurrentCamera:Clone().Parent = game.Workspace
Ad

Answer this question