Why doesnt this work? Gamescript not working at all.
My game script doesnt work at all. It looks like everything should be all good but when i test it it doesnt even do anything.
003 | local timeleft = workspace:findFirstChild( 'timeleft' ) |
004 | local currentMap = workspace:findFirstChild( 'currentMap' ) |
005 | local _Teams = game:GetService 'Teams' |
006 | local _Players = game:GetService 'Players' |
011 | for i = 120 , 0 , - 1 do |
019 | local players = _Players:GetPlayers() |
020 | for i = 1 , #players do |
021 | local stats = players [ i ] .PlayerGui.fullGui.everything.gamePlay.informer |
023 | stats.Text = 'New round beginning!' |
024 | stats.FontSize = 'Size24' |
032 | local function splitPlayers() |
033 | _Teams.Lobby:Destroy() |
034 | local UseSecondTeam = false |
035 | for i, v in ipairs (_Players:GetPlayers()) do |
036 | if UseSecondTeam then |
037 | v.TeamColor = _Teams [ "Cops" ] .TeamColor |
039 | v.TeamColor = _Teams [ "Criminals" ] .TeamColor |
041 | UseSecondTeam = not UseSecondTeam |
045 | function createTeams() |
046 | local Cops = Instance.new( "Team" , _Teams) |
047 | Cops.TeamColor = BrickColor.new( "Bright blue" ) |
049 | Cops.AutoAssignable = false |
051 | local Criminals = Instance.new( "Team" , _Teams) |
052 | Criminals.TeamColor = BrickColor.new( "Bright orange" ) |
053 | Criminals.Name = "Criminals" |
054 | Criminals.AutoAssignable = false |
057 | function teleportPlayers() |
061 | local players = _Players:GetPlayers() |
063 | local copSpawn = workspace.teleportationpart |
064 | local criminalSpawn = workspace.teleportationpart 2 |
067 | for i = 1 , #players do |
068 | if players [ i ] .TeamColor = = BrickColor.new( "Bright blue" ) then |
069 | players.Character.Torso.CFrame = CFrame.new(copSpawn.Position) |
070 | elseif players [ i ] .TeamColor = = BrickColor.new( "Bright orange" ) then |
071 | players.Character.Torso.CFrame = CFrame.new(criminalSpawn.Position) |
077 | local players = _Players:GetPlayers() |
078 | for i = 1 , #players do |
079 | local stats = players [ i ] .PlayerGui.fullGui.everything.gamePlay.informer |
081 | stats.FontSize = 'Size24' |
082 | stats.Text = "Intermission! Check our the shop and talk to your friends!" |
091 | local players = _Players:GetPlayers() |
092 | for i = 1 , #players do |
093 | players [ i ] :LoadCharacter() |
095 | currentMap:ClearAllChildren() |
101 | local players = _Players:GetPlayers() |
102 | for i = 1 , #players do |
103 | players [ i ] .PlayerGui.fullGui.everything.gamePlay.informer.Text = 'We have enough players to start!' |
111 | local oldmap = game.Workspace.currentMap:GetChildren() |
113 | local maps = game.ServerStorage.Maps:GetChildren() |
114 | local clone = maps [ math.random( 1 , #maps) ] |
115 | clone.Parent = currentMap |
131 | if _Players.NumPlayers > = 2 then |
143 | while timeleft.Value > 0 do |
154 | if workspace.NoCash.Value = = true then |
162 | local player = _Players:GetPlayers() [ 1 ] |
164 | player.PlayerGui.fullGui.everything.gamePlay.informer.Text = '2 players are needed to start! Invite a friend.' |
Did i spell something wronge ore what!? I thought it looked perfect but for some reaason it doesnt work at all! PLEASE HELP ME I DONT KNOW WHAT TO DO?!