How to make Fortnite lobby camera in Roblox studio Tutorial

Описание к видео How to make Fortnite lobby camera in Roblox studio Tutorial

In this tutorial, i got the idea to make a Fortnite lobby camera tutorial so please
subscribe if you want

Script 1:
local Camera = game.Workspace.CurrentCamera
local Player = game.Players.LocalPlayer






repeat wait() until Player.Character

Camera.CameraType = "Scriptable"
Camera.CFrame = game.Workspace.CamPart.CFrame

script.Parent.Enabled = true

local MasterControl = require(game.Players.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ControlScript"):WaitForChild("MasterControl"))

MasterControl:Disable()










script.Parent.Spawn.MouseButton1Click:connect (function ()
script.Parent.Enabled = false
Camera.CameraType = "Custom"

function setTeam(player, teamName)
player.TeamColor = game.Teams[teamName].TeamColor
if player.Character then
end
end

for _, player in pairs(game.Players:GetPlayers()) do
setTeam(player, "Grey Team") ---- Change this to the team you want them to be on once they are done customizing their character
end


local MasterControl = require(game.Players.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ControlScript"):WaitForChild("MasterControl"))

MasterControl:Enable()

end)

Script 2:
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0

Комментарии

Информация по комментариям в разработке