Answered by
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--
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" ) |
11 | ReplicatedStorage:WaitForChild( "RoundSpawn" ).OnServerEvent:Connect( function (IsInRound,DoJoinRound) |
13 | for i, player in pairs (game.Players:GetChildren()) do |
14 | local char = player.Character |
15 | if player.JoinRound.Value = = true then |
16 | char.HumanoidRootPart.CFrame = GameAreaSpawn.CFrame |
24 | for i, player in pairs (game.Players:GetChildren()) do |
25 | local char = player.Character |
27 | char.HumanoidRootPart.CFrame = LobbySpawn.CFrame |
28 | player.PlayerGui.JoinRound.TextButton.Text = "Join" |
now in the local script, this is the line to fire, you can copy and paste each line depended on the action
3 | ReplicatedStorage:WaitForChild( "RoundSpawn" ):FireSever( true , false ) |
6 | ReplicatedStorage:WaitForChild( "RoundSpawn" ):FireSever( false , true ) |