This play button script only works In Studio and not In Server?
I tested this script, and it worked, but when I test a server it doesn't work.. It's supposed to spawn the player in a specific team and load the character but it only works when I test in general in studio but in a server it doesn't work at all.. I tried to make the main script a local script but it doesn't work neither on server or on client. On server or studio there are no errors..
Main script(Parent=Workspace, ServerScript)
1 | game.ReplicatedStorage.PlayerSpawn.OnServerEvent:Connect( function (plr) |
2 | local house = plr.PlayerGui:WaitForChild( "GameChooseGUI" ).Frame |
3 | local t = house.PlayButton.Text |
4 | plr.PlayerGui.GameChooseGUI.Frame.Visible = false |
5 | plr.TeamColor = BrickColor.new( "Bright red" ) |
GUI Script(Parent=PlayButton, LocalScript)
1 | local plr = game.Players.LocalPlayer |
2 | local house = plr.PlayerGui:WaitForChild( "GameChooseGUI" ).Frame |
3 | local t = house.PlayButton.Text |
4 | script.Parent.MouseButton 1 Click:Connect( function () |
5 | game.ReplicatedStorage.PlayerSpawn:FireServer() |