of     1   

Pyracel
#183715637Tuesday, February 16, 2016 12:29 AM GMT

For some reason my code is not getting all the players..... And when I run it, it says that there are no players when I do #Players...... WHATS WRONG! local Players = game.Players:GetChildren() local ServerScriptService = script.Parent local ServerStorage = game:GetService("ServerStorage") local Flux1 = ServerStorage.Flux1 local Tele = game.Workspace.Tele local P = Tele.Position local X = P.X local Y = P.Y local Z = P.Z local NumPlayers = #Players local Flux1 = ServerStorage.Flux1 local SP = game.Workspace.Map.Spawner.Position local SX = SP.X local SY = SP.Y local SZ = SP.Z local AIs = 20 local AMOUNT = AIs local RoundTime = 60*5 while true do wait(5) -----------------------------This IS what your looking for--------------- print(NumPlayers) if Players.Parent then print(Players.CFrame) Players.CFrame = CFrame.new(X,Y+5,Z) local Backpack = Players.Backpack local newG = Flux1:clone() newG.Parent = Backpack --------------------------This is not what your looking for-------------------- while AMOUNT 0 do wait(1) AMOUNT = AMOUNT - 1 local LOL = game.Lighting:WaitForChild("AI"):clone() LOL.Parent = game.Workspace LOL:WaitForChild("Torso").CFrame = CFrame.new(SX,SY,SZ) end wait(RoundTime) print("Done Waiting") ----------------------There is this bit too------------- Players.PlayerGui.ScreenGui.Frame.Visible = true Players.Character.Humanoid.Health = 0 -------------dont pay attention to this------------ AMOUNT = AIs repeat if workspace:FindFirstChild("AI", true) then workspace:FindFirstChild("AI", true):Destroy() end until not workspace:FindFirstChild("AI", true) end end
RulerOfTheFree
#183717959Tuesday, February 16, 2016 12:49 AM GMT

! should be ? after "WHATS WRONG" which should be "What's wrong" since it's probably best not to yell at the people you're asking for help. There are no players when your game.Players:GetChildren() table is made. You need to call that when you need it, not at the beginning of the script.
Pyracel
#183745813Tuesday, February 16, 2016 8:46 AM GMT

Ya, whatever. You don't think i already tried that?

    of     1