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,
003 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
005 | local ServerStorage = game:GetService( "ServerStorage" ) |
007 | local MapsFolder = ServerStorage:WaitForChild( "Maps" ) |
009 | local Status = ReplicatedStorage:WaitForChild( "Status" ) |
011 | local GameLength = 240 |
013 | local cashreward = 25 |
017 | local trophiesreward = 25 |
019 | local TweenService = game:GetService( "TweenService" ) |
021 | local statustextlabel = game.StarterGui.Status.TextLabel |
027 | Status.Value = "Waiting for enough Players" |
029 | repeat wait( 1 ) until #game:GetService( 'Players' ):GetPlayers() > = 1 |
031 | Status.Value = "Intermission" |
037 | for i, player in pairs (game.Players:GetPlayers()) do |
039 | table.insert(plrs,player) |
045 | local AvailableMaps = MapsFolder:GetChildren() |
047 | local ChosenMap = AvailableMaps [ math.random( 1 ,#AvailableMaps) ] |
049 | Status.Value = " Teleporting to " ..ChosenMap.Name.. "" |
051 | local ClonedMap = ChosenMap:Clone() |
052 | ClonedMap.Parent = workspace |
057 | local SpawnPoints = ClonedMap:FindFirstChild( "SpawnPoints" ) |
059 | if not SpawnPoints then |
060 | print ( "Spawnpoints not found!" ) |
063 | local AvailableSpawnPoints = SpawnPoints:GetChildren() |
065 | for i, player in pairs (plrs) do |
067 | character = player.Character |
072 | character:FindFirstChild( "HumanoidRootPart" ).CFrame = AvailableSpawnPoints [ 1 ] .CFrame + Vector 3. new( 0 , 5 , 0 ) |
073 | table.remove(AvailableSpawnPoints, 1 ) |
076 | local equipped = game.ServerStorage.PlayerData [ player.Name ] .Equipped |
078 | if equipped.Value ~ = "" then |
079 | local weapon = game.ServerStorage.Items [ equipped.Value ] :Clone() |
080 | weapon.Parent = player.Backpack |
082 | local Sword = ServerStorage.Sword:Clone() |
083 | Sword.Parent = player.Backpack |
086 | local equipped 2 = game.ServerStorage.PlayerData [ player.Name ] .Equipped 2 |
088 | if equipped 2. Value ~ = "" then |
089 | local weapon 2 = game.ServerStorage.Items [ equipped 2. Value ] :Clone() |
090 | weapon 2. Parent = player.Backpack |
092 | local Gun 1 = ServerStorage.Gun 1 :Clone() |
093 | Gun 1. Parent = player.Backpack |
096 | local GameTag = Instance.new( "BoolValue" ) |
097 | GameTag.Name = "GameTag" |
098 | GameTag.Parent = player.Character |
110 | Status.Value = "Get ready to play!" |
113 | Status.Value = "Be the last one standing, you only have one chance!" |
116 | for i = GameLength, 0 ,- 1 do |
118 | for x, player in pairs (plrs) do |
121 | character = player.Character |
123 | if not character then |
127 | if character:FindFirstChild( "GameTag" ) then |
129 | print (player.Name.. " is still in the game!" ) |
132 | character:FindFirstChild( "HumanoidRootPart" ).CFrame = AvailableSpawnPoints [ 2 ] .CFrame + Vector 3. new( 0 , 5 , 0 ) |
133 | table.remove(AvailableSpawnPoints, 2 ) |
134 | print (player.Name.. " has been removed!" ) |
138 | print (player.Name.. " has been removed!" ) |
142 | Status.Value = "There are " ..i.. " seconds remaining, and " ..#plrs.. " players left" |
145 | if plrs [ 1 ] .leaderstats.Kills.Value > = 30 then |
147 | Status.Value = "The winner is " ..plrs [ 1 ] .Name |
148 | plrs [ 1 ] .leaderstats.Coins.Value = plrs [ 1 ] .leaderstats.Coins.Value + cashreward |
149 | plrs [ 1 ] .leaderstats.Gems.Value = plrs [ 1 ] .leaderstats.Gems.Value + gemsreward |
150 | plrs [ 1 ] .leaderstats.Trophies.Value = plrs [ 1 ] .leaderstats.Trophies.Value + trophiesreward |
153 | elseif #plrs = = 0 then |
154 | Status.Value = "Nobody won!" |
157 | Status.Value = "Time up!" |
168 | for i, player in pairs (game.Players:GetPlayers()) do |
169 | character = player.Character |
171 | if not character then |
175 | if character:FindFirstChild( "GameTag" ) then |
176 | character.GameTag:Destroy() |
179 | for _, tool in pairs (player.Backpack:GetChildren()) do |
180 | if tool:FindFirstChild( "Price" ) then |
185 | for _, tool in pairs (character:GetChildren()) do |
186 | if tool:FindFirstChild( "Price" ) then |
193 | player:LoadCharacter() |
198 | Status.Value = "Game ended" |