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

?Round System, making a specific player teleport?

Asked by
Zelt3q 31
4 years ago

Hello, I am trying to make the specific player teleport who has the Value to true. It currently teleports everyone. Btw it is in a normal script.

01local roundLength = 5
02local IntermissionLength =  20
03local InRound = game.ReplicatedStorage.InRound
04local Status = game.ReplicatedStorage.Status
05local LobbySpawn = game.Workspace.LobbySpawn
06local GameAreaSpawn = game.Workspace.GameAreaSpawn
07local ReplicatedStorage = game:GetService("ReplicatedStorage")
08 
09 
10 
11InRound.Changed:Connect(function()
12    if InRound.Value == true then
13        for i, player in pairs(game.Players:GetChildren()) do
14            local char = player.Character
15            if player.JoinRound.Value == true then
View all 34 lines...

1 answer

Log in to vote
0
Answered by
FirezDevv 162
4 years ago
Edited 4 years ago

Sadly a local script can't change what a server script sees, luckily we have something called remotes. Add a remote event in ReplicatedStorage named RoundSpawn

--Normal Script/ Server Script--

01local roundLength = 5
02    local IntermissionLength =  20
03    local InRound = game.ReplicatedStorage.InRound
04    local Status = game.ReplicatedStorage.Status
05    local LobbySpawn = game.Workspace.LobbySpawn
06    local GameAreaSpawn = game.Workspace.GameAreaSpawn
07    local ReplicatedStorage = game:GetService("ReplicatedStorage")
08 
09 
10 
11       ReplicatedStorage:WaitForChild("RoundSpawn").OnServerEvent:Connect(function(IsInRound,DoJoinRound)
12        if IsInRound then
13            for i, player in pairs(game.Players:GetChildren()) do
14                local char = player.Character
15                if player.JoinRound.Value == true then
View all 33 lines...

now in the local script, this is the line to fire, you can copy and paste each line depended on the action

1--If they are supposed to spawn
2 
3ReplicatedStorage:WaitForChild("RoundSpawn"):FireSever(true,false)
4 
5-- to go to lobby
6ReplicatedStorage:WaitForChild("RoundSpawn"):FireSever(false,true)
Ad

Answer this question