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

I made a script to spawn to the mini game for round base game and the script is not running?

Asked by 4 years ago

here is my script i put it inside serverscriptserviece and i dont know whats wrong

Numplayers = 1 Minigames = game.ServerStorage.Minigames : getChildren () function msg (text) print (text) end

     function PlayerAdded(Player)
            local Bool = Instance.new ("BoolValue" , Player)
            Bool.Name = "AFK
            end

function GetPlayers()
local Players = {}
  for i,v in pairs (game.Players:GetChildren()) do
  if v:FindFirstChild ("AFK") and not v .AFK.Value then
         table.insert(Players, v)
         end
         end 
         return players
         end
         game.Players.PlayerAdded:connect(PlayerAdded)


     while true do
     local Players = GetPlayers()
     if #Players() >= Numplayers then
     Msg ("There are not enough players, to start the game!")
     wait (3)
     Msg ("Choosing a map...")
     wait (2)
     local chosen = Minigames [math.random] (1, #Minigames(]
     local Clone = Chosen = Chosen:Clone()
     wait (2)
     Msg ("Minigame chosen! The map is "... chosen.Name..)
     Clone.Parent = workspace.CurrentMinigame
     Msg ("Teleporting players to the minigame.")
     for i,v in pairs (Player) do
      if v then
      local Teleport = Clone.Teleports:GetChildren () [math.random(1, #Clone.Teleports:GetChildren)()]
       v.Charcter:SetPrimaryPartCFrame(Teleport.CFrame * CFrame.new (0, 5 ,0))
       Teleport:Destroy()
      end
     end
     else
     Msg ("There are not enough players to start the game!")
     end
     wait()
     end
0
i see so many typos and errors EmbeddedHorror 299 — 4y
0
for starter u left the bool.name as "afk EmbeddedHorror 299 — 4y
0
starters* EmbeddedHorror 299 — 4y
0
i fixed that i must of deleted it :| what else please tell me idk what is wrong matty123465 11 — 4y
View all comments (3 more)
0
Open your output. Are there any errors popping up when you run? Paste the errors here sahadeed 87 — 4y
0
20:22:21.513 - tyr5.rbxl auto-recovery file was created Loading Tree Gen... Finished Loading Tree Gen Loading Cutscene Editor... Finished Loading. 20:22:22.949 - Plugin_142613350.EmptyScriptAdder:7: unfinished string near '") ' Loading Tree Gen... Finished Loading Tree Gen Loading Cutscene Editor... Finished Loading. 20:22:24.285 - Plugin_142613350.EmptyScriptAdder:7: unfinished string near '") ' matty123465 11 — 4y
0
it seems the script goes away? matty123465 11 — 4y

Answer this question