How do you make a spawn for only 1 person, as in it doesn't show on the leaderboard, but that person has they're own spawn, they won't spawn anywhere else. Just that spawn, even if they're in the same team as someone else?
Like ControlSpawning?
Full script
Name = "Person you want to spawn there" --Specify the player Spawn = "Name of the spawn here" --Get the name of the spawn spwn = game.Workspace:FindFirstChild(Spawn) --find something named that in the workspace game.Players.PlayerAdded:connect(function(plr) --Wehn a player enters the game plr.CharacterAdded:connect(function(char) --then when their character enters wait(1) --wait a second if char.Name:lower() == Name:lower() then --and check if they have the specified name char.Torso.CFrame = CFrame.new(spwn.Position+Vector3.new(0,5,0)) --move them end end) end)
Hope I Helped
+1
You can create a part in Workspace and call it "CustomSpawn" then use the CharacterAdded event on the specific player and move him to the part's position (use MoveTo as opposed to SetPrimaryPartCFrame so they will spawn on-top of the part, not inside).