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 |