game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) if player.Name=="Obscuriti" or player.Name=="Tempestatem" then print(player.Name.." Has started a Practice Raid!") if msg == "start" then songs = game.ServerStorage:GetChildren() Song1 = songs[math.random(1,#songs)] Song1.Parent=game.Workspace if Song1.Name=="M1" then end rval=0 dval=0 -- It seems to stop working here. for k, p in pairs(game.Players:GetPlayers()) do if rval>dval then p.TeamColor=BrickColor.new("Bright red") elseif dval>rval then p.TeamColor=BrickColor.new("Bright blue") end end end end end) end)
**Output says nothing. **