Does anyone know how to make a command that will make everyone’s camera face the stage. With a certain rank+ in a group?
Example
Me: Does a view stage command.
Everyone: Everyone’s camera faces the stage.
Does anyone know how to make a command that will make everyone’s camera face the stage. With a certain rank+ in a group?
Me: Does a view stage command.
Everyone: Everyone’s camera faces the stage.
This might work.
The server script:
local remoteEvent = game:GetService( "ReplicatedStorage").RemoteEvent
for _, p in pairs(game.Players:GetChildren()) do
remoteEvent:FireClient(p)
-- This part is optional, if you want the character to not be able to move.
p.Character.Humanoid.PlatformStand = true
p.Character.HumanoidRootPart.Anchored = true
end
The client script:
game.ReplicatedStorage.RemoteEvent.OnClientEvent:Connect(function()
local camera = game.Workspace.CurrentCamera
camera.CFrame = --The CFrame it should move to
end)
Thanks!I’ll try that!Where and what script do I put in?
Make a local script and put it in “StarterPlayerScripts”, and put the local code in it, then make the server script code run when you fire the command. Also make a new Remote Event and put it in replicated storage.