How to make a tool when you equip it it changes the camera view?
I've been working on a game show and there is going to be a team helping with the electronics and stuff playing sounds , opening curtains, and a camera tool so they can watch. If you see anything wrong with my scripting please tell me. I am pretty new.
01 | local Player = game.Players.LocalPlayer |
02 | local Character = Player.Character or Player.CharacterAdded:Wait() |
03 | local Camera = game.Workspace.CurrentCamera |
04 | local StageView = game.StarterPack [ "Stage View" ] |
07 | StageView.Activated:Connect( function () |
08 | Camera.CameraType = Enum.CameraType.Scriptable |
09 | Camera.CFrame = workspace.FocusHere.Position |