Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Respawning in round system?

Asked by 4 years ago
Edited 4 years ago

So, I have this round script and it works fine, but I want the player to respawn at one of the spawns when dead, instead of respawning in the lobby.

The round system goes like this...

  • Intermission countdown begins

  • A map or a specific map is chosen

  • Players are teleported to a spawn by their "HumanoidRootParts". The spawn that was picked for that player is then removed from a table so it doesn't get called again.

The problem here is that I'm not sure as to how they would respawn at one of spawns when dead. I've tried doing this by using the same lines of code which teleports them to the spawns, but rather this happens repetitively and the player respawns at nearly all the spawns. This shouldn't be happening, and should only happen once. After around 10 seconds, I get an error in the output which states "ServerScriptService.RoundScript: 132: attempt to index nil with CFrame". Why is this happening? Is this because both the spawn functions are interfering? Additionally, it seems to be repetitive almost in like a loop, because my output keeps printing the relative print that fallows this spawning function, e.g "has been removed(*10). Is there any more efficient way to do this, I feel like I'm missing something here. I've been stuck on this for sometime and have not found any way to solve it. This is my first post and any help would greatly appreciable. Thankyou!

This is the round script,

001    -- Define Variables
002 
003    local ReplicatedStorage = game:GetService("ReplicatedStorage")
004 
005    local ServerStorage = game:GetService("ServerStorage")
006 
007    local MapsFolder = ServerStorage:WaitForChild("Maps")
008 
009    local Status = ReplicatedStorage:WaitForChild("Status")
010 
011    local GameLength = 240
012 
013    local cashreward = 25
014 
015    local gemsreward = 5
View all 201 lines...

Answer this question