Need help making a lobby like phantom forces

I want to make a 3D lobby with a GUI deploy button like phantom forces. I Have looked on YouTube and can’t find a tutorial. Any ideas?

You can build the lobby first, then put a part in front of the dummy in the lobby facing it and call it “camPart”. Then add a local script in the StarterPlayerScripts and put this code inside it.

local plr = game.Players.LocalPlayer
local dummy = -- locate the dummy in the explorer

local camPart = --locate the camPart in the explorer

workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable
workspace.CurrentCamera.CFrame = camPart.CFrame

plr.Character.Humanoid.Died:Connect(function()
    workspace.CurrentCamera.CFrame = camPart.CFrame
end)
1 Like

this game is first person will the code work with this??

Well you can make it so every time the person deploys

workspace.CurrentCamera.CameraType = Enum.CameraType.Custom
plr.CameraMode = Enum.CameraMode.LockFirstPerson

Also I want to make a drone tool that when you press E the player uses a tablet that launches a drone that they control and see where people are using a thermal camera any ideas on how to make dat work?? I need lots of help with my game.