Hello everyone! I am here asking for some help with my script that I have been making for the past couple of days. It is for a game called “Lucid Lava” which is a round-based sword fighting game. Anyways, the map loads in, and it says at the top that (this map) has been chosen, but it doesn’t teleport me. Can anyone find any bugs in the script that I couldn’t find? Please let me know, thanks.
Can you try debugging your code by looking though Alvin Blox’s tutorial carefully again (as it seems quite similar), as well as making an attempt to debug your code yourself. Do you have your “SpawnPoints” ? Where does it last print?
for i, player in pairs(plrs) do
if player then
table.remove(plrs,x)
When iterating through ‘players’ you use “i”. However when removing the player you use “x”. x in this case seems to be the timer. Replace x with i.