It can be challenging to locate friends in-experience. The SpawnWithFriends developer module automatically moves spawning players near one of their friends present in the experience. This module can also be configured to teleport a player on command instead of automatically.
Module Usage
Installation
To use the SpawnWithFriends module in an experience:
Make sure the Models sorting is selected, then click the See All button for Categories.
Locate and click the Dev Modules tile.
Locate the Spawn With Friends module and click it, or drag-and-drop it into the 3D view.
In the Explorer window, move the entire SpawnWithFriends model into ServerScriptService. Upon running the experience, the module will distribute itself to various services and begin running.
Restricted Spawn Areas
This module may result in players spawning in restricted areas like VIP rooms, access-only spaces, etc. To prevent players from teleporting to these areas:
Fill the restricted area with invisible Anchored blocks. Make sure CanCollide, CanTouch, and CanQuery are disabled for all blocks.
Using the Tags section of each block's properties, or Studio's Tag Editor, apply the tag RestrictedSpawnArea so that CollectionService detects them.
Paste the following code into a Script within ServerScriptService.
Scriptlocal ReplicatedStorage = game:GetService("ReplicatedStorage")local CollectionService = game:GetService("CollectionService")local SpawnWithFriends = require(ReplicatedStorage:WaitForChild("SpawnWithFriends"))local function validator(playerToTeleport, destinationPlayer, teleportationPoint)-- Iterate through all tagged partsfor _, area in CollectionService:GetTagged("RestrictedSpawnArea") dolocal relativePosition = area.CFrame:PointToObjectSpace(teleportationPoint.Position)local size = area.Sizelocal inXBounds = relativePosition.X < size.X / 2 and relativePosition.X > -size.X / 2local inZBounds = relativePosition.Z < size.Z / 2 and relativePosition.Z > -size.Z / 2if inXBounds and inZBounds thenreturn false -- Spawn destination is within restricted area; abort teleportationendendreturn true -- Spawn destination doesn't overlap any restricted area; proceed with teleportationendSpawnWithFriends.setTeleportationValidator(validator)
API Reference
Functions
configure
Overrides default configuration options through the following keys/values in the config table. This function can only be called from a Script.
Key | Description | Default |
---|---|---|
teleportToFriendOnRespawn | If set to false, teleportation to a friend will only happen manually via teleportToRandomFriend. | true |
teleportDistance | How far away players should spawn from each other, measured in studs. | 5 |
maxCharacterVelocity | Characters moving faster than this value won't be picked as teleportation candidates, for instance those in moving vehicles. | 48 |
bypassFriendshipCheck | If set to true, all players will be candidates for teleportation, not just friends. | false |
showLogs | Whether or not to display log messages in the output. | false |
Script
local ReplicatedStorage = game:GetService("ReplicatedStorage")local SpawnWithFriends = require(ReplicatedStorage:WaitForChild("SpawnWithFriends"))SpawnWithFriends.configure({teleportToFriendOnRespawn = true,teleportDistance = 5,maxCharacterVelocity = 48,bypassFriendshipCheck = false,showLogs = false})
teleportToRandomFriend
Manually triggers teleportation of a player to one of their friends in the experience. Returns a boolean indicating whether or not teleportation succeeded; failure to teleport can be caused by the absence of friends in the server or the inability to find an unobstructed teleportation point. This function can only be called from a Script.
setTeleportationValidator
Allows you to perform custom pre-teleportation checks by hooking up a validator callback function. The callback receives three parameters:
Parameter | Description |
---|---|
playerToTeleport | Reference to the Player that is being teleported. |
destinationPlayer | Reference to the target Player that playerToTeleport is being teleported to. |
teleportationPoint | CFrame where playerToTeleport is teleporting to. |
This function and its callback can only be used in a Script and the callback returns a boolean indicating whether teleportation should proceed. For example, the return logic in the following validator function ensures that the spawning player and destination player are on the same team.
Script
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local SpawnWithFriends = require(ReplicatedStorage:WaitForChild("SpawnWithFriends"))
-- Teleports players only if they are on the same team
local function validator(playerToTeleport, destinationPlayer, teleportationPoint)
return playerToTeleport.Team == destinationPlayer.Team
end
SpawnWithFriends.setTeleportationValidator(validator)