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

(Server Script) How to know how many players are on the game?

Asked by 6 years ago

I need to make a script that creates one boat for each player...

This is what I got:

01local RepStorage = game:WaitForChild("ReplicatedStorage")
02local Remote = RepStorage:WaitForChild("GameRemote")
03 
04--Wait for players
05game:WaitForChild("Players")
06wait(1)
07--FireClient
08Remote:FireAllClients()
09print("Countdown has been fired")
10--FireClient
11Remote.OnServerEvent:Connect(function(player)
12    --Script goes here
13end)

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

how to know how many players

1local players = game.Players:GetPlayers()
2print(#players)

spawn ship to every player

1for i,v in pairs(game.Players:GetPlayers()) do
2local clone = game.ServerStorage.Ship:Clone()
3clone.Parent = workspace
4clone:MoveTo(v.Character.Head.Position) -- do any position of any body part
5end
0
i can also make it that it spawns infront of the player or near and not above Lolamtic 63 — 6y
0
Thanks, you can also find my game here if you wana try it: https://www.roblox.com/games/2436224110/Voteable retrobricks 162 — 6y
Ad

Answer this question