It checks if a player has been moved into the storage and then moves them.
01 | while true do |
02 | wait( 1 ) |
03 | if game.ReplicatedStorage.Players.Check.Value = = 3 then |
04 | print ( "No Players Stored" ) |
05 | elseif game.ReplicatedStorage.Players.Check.Value = = 1 then |
06 | print ( "Player Found" ) |
07 | game.ReplicatedStorage.Players.Check.Value = 2 |
08 | local Location = game.ReplicatedStorage.Players.Player:FindFirstChildOfClass( "Part" ) |
09 | Location.Parent = game.Workspace.Players |
10 | print ( "Player Moved" ) |
11 | game.ReplicatedStorage.Players.Check.Value = 3 |
12 | elseif game.ReplicatedStorage.Players.Check.Value = = 2 then |
13 | print ( "Player Move In Progress" ) |
14 | wait( 2 ) |
15 | end |
16 | end |
This script renames the part to the players name and then moves it to storage for the above script to move into the Workspace, This 2 step move has to be done as when the below script moves the part it stores it locally preventing players from seeing each other, This is also setting the value for when a part is in there, This is a Local Script.
01 | wait( 2 ) |
02 | local Pos = game.Workspace.Spawn.Position |
03 | local Player = script.Parent:Clone() |
04 | local NM = script.Parent.Parent.NM.Value |
05 | Player.Name = NM |
06 | Player.Parent = game.ReplicatedStorage.Players.Player |
07 | Player.Position = Pos |
08 | game.ReplicatedStorage.Players.Check.Value = 1 |
09 | print (NM, "Has been moved" ) |
10 | wait( 5 ) |
11 | script.Parent.Parent.Parent.Controls.ControlMain.Disabled = false |
12 | script.Parent.Parent.Parent.Camera.Camera.Disabled = false |
Properly formatting/indenting code is good practice, as it allows for easier readability which in turn helps debugging. Allow me to help.
01 | while true do |
02 | wait( 1 ) |
03 | if game.ReplicatedStorage.Players.Check.Value = = 3 then |
04 | print ( "No Players Stored" ) |
05 | else if game.ReplicatedStorage.Players.Check.Value = = 1 then |
06 | print ( "Player Found" ) |
07 | game.ReplicatedStorage.Players.Check.Value = 2 |
08 | local Location = game.ReplicatedStorage.Players.Player:FindFirstChildOfClass( "Part" ) |
09 | Location.Parent = game.Workspace.Players |
10 | print ( "Player Moved" ) |
11 | game.ReplicatedStorage.Players.Check.Value = 3 |
12 | else if game.ReplicatedStorage.Players.Check.Value = = 2 then |
13 | print ( "Player Move In Progress" ) |
14 | wait( 2 ) |
15 | end |
16 | end |
17 | end |
18 | end |
Now, it's much easier to spot what you did wrong:
else if
is not a keyword in Lua. Rather, use elseif
.
You added two extra end
s at the bottom.
Here's the fixed script.
01 | while true do |
02 | wait( 1 ) |
03 | if game.ReplicatedStorage.Players.Check.Value = = 3 then |
04 | print ( "No Players Stored" ) |
05 | elseif game.ReplicatedStorage.Players.Check.Value = = 1 then |
06 | print ( "Player Found" ) |
07 | game.ReplicatedStorage.Players.Check.Value = 2 |
08 | local Location = game.ReplicatedStorage.Players.Player:FindFirstChildOfClass( "Part" ) |
09 | Location.Parent = game.Workspace.Players |
10 | print ( "Player Moved" ) |
11 | game.ReplicatedStorage.Players.Check.Value = 3 |
12 | elseif game.ReplicatedStorage.Players.Check.Value = = 2 then |
13 | print ( "Player Move In Progress" ) |
14 | wait( 2 ) |
15 | end |
16 | end |
Hope I helped!