Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I Make Game Rounds And Give A Random Player A Weapon?

Asked by 5 years ago

I cant make a game round where the player selected to be "it" gets a weapon. The round repeats lasts 120 seconds and the intermission is 10 seconds

1
SH is not a request site. But I'll try to help out anyway. DeceptiveCaster 3761 — 5y
0
Assign each player a number and math.Random(#ofPlayers) and add the weapon to their inventory. ForKaznia 6 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

ROUNDS

Your 1st move would be to define the Players:

local plrs = game.Players

Next, run a for loop using the number of players:

for i = 1, #plrs do

From there, create your rounds.

I can't really help you out that much regarding the guidelines, so figure it out yourself :D

Ad

Answer this question