RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"no dont use a healthbar, just make them glow red"
-- server script local function startRound() if #players:GetPlayers() < minPlayers then print("Not enough players to start a round.") return end print("Starting round...") local alivePlayers = players:GetPlayers() local ballHolder = alivePlayers[math.random(#alivePlayers)] playerStates[ballHolder.Name] = {HasBall = true, IsAlive = true} -- place players randomly on the map but avoid the middle where the ball is for _, player in pairs(alivePlayers) do local randomPos repeat local randomSpawn = spawnLocations[math.random(#spawnLocations)] -- get a random spawn location randomPos = randomSpawn.Position -- get the position of the spawn location until (randomPos - ballStartPos).Magnitude > ball.Size.Magnitude * 2 -- make sure the player is not too close to the ball player.Character.HumanoidRootPart.Position = randomPos table.remove(spawnLocations, table.find(spawnLocations, randomPos)) -- remove the used spawn location so it can't be used again end for i=roundTime, 0, -miniRoundTime do task.wait(miniRoundTime) if #alivePlayers == 1 then print(alivePlayers[1].Name .. " wins the round!") resetRound() break else -- If the ball holder still has the ball after the mini round, they are out if playerStates[ballHolder.Name].HasBall then print(ballHolder.Name .. " is out!") table.remove(alivePlayers, table.find(alivePlayers, ballHolder)) playerStates[ballHolder.Name].IsAlive = false -- Pass the ball to a new random player ballHolder = alivePlayers[math.random(#alivePlayers)] playerStates[ballHolder.Name] = {HasBall = true, IsAlive = true} -- Make the player holding the ball glow red local forceField = Instance.new("ForceField") forceField.BrickColor = BrickColor.new("Bright red") forceField.Parent = ballHolder.Character -- Make the ball move towards the new ball holder ball.Velocity = (ballHolder.Character.HumanoidRootPart.Position - ball.Position).unit * 50 end end end print("Round ended.") end while true do task.wait(5) -- Wait 5 seconds between rounds startRound() end