Why does the Client Script completely STOP at a certain point? [SOLVED BY ME]
Asked by
6 years ago Edited 6 years ago
For some unknown reason, the client script completely STOPS at a certain point and doesn't move on. This only occurs on the Player Two's screen while the Player One's screen works completely fine. This is strange because this only happens when it is fired via a remote event.
Server Script:
1 | PrimaryEvent:FireClient(PlayerTwo, "Intro" , PlayerOne, PlayerTwo) |
3 | PrimaryEvent:FireClient(PlayerOne, "Intro" , PlayerOne, PlayerTwo) |
Client Script:
01 | if topic = = "Intro" then |
03 | repeat wait() until playerGui:FindFirstChild( "VS_Background" ) |
06 | playerGui.VS_Background.PlayerOne.Username.Text = body.Name |
07 | playerGui.VS_Background.PlayerTwo.Username.Text = conclusion.Name |
08 | local PlayerOne = playerGui.VS_Background.PlayerOne |
09 | local PlayerTwo = playerGui.VS_Background.PlayerTwo |
10 | local VS = playerGui.VS_Background.VS_Icon |
11 | local Title = playerGui.VS_Background.Title |
12 | local Fight = playerGui.VS_Background.Fight |
13 | PlayerOne:TweenPosition(UDim 2. new( 0.037 , 0 , 0.405 , 0 ), "Out" ) |
14 | PlayerTwo:TweenPosition(UDim 2. new( 0.863 , 0 , 0.405 , 0 ), "Out" ) |
15 | VS:TweenPosition(UDim 2. new( 0.407 , 0 , 0.37 , 0 ), "Out" ) |
16 | Title:TweenPosition(UDim 2. new( 0.236 , 0 , 0.147 , 0 ), "Out" , "Bounce" , 1 ) |
This is of course not all of the script, if you need more script then contact me. On line 17, the script completely stops on Player Two's screen(As labeled). I have no clue what is causing this and if you can help me that'd be great! Thank you!