Instructions
Download a spawn point object from the "Roblox" database by searching for "spawn."
Open "Roblox" studios.
Place the spawn point in the desired location in the game world by dragging the icon of the spawn point onto the terrain.
Expand the "Workspace" tab on the right of the screen.
Expand the spawn location folder.
Access the spawn location's code by clicking "Script."
Input the following code into the spawn point's script:
function OPE(p)
if p.Name == "Creator Name here" then
game.Players[Creator Name here].Character.Torso.CFrame = Workspace.CreatorSpawnNameHere
elseif p.Name == "Friend name" then
game.Players[Creator Name here].Character.Torso.CFrame = Workspace.FriendSpawnNameHere
end
end
game.Players.PlayerAdded:connect(OPE)
Save your world. Whenever you load the game world as a player, you will be the only gamer to spawn at this unique creator-only spawn point location.