Roblox Scripting | display gui when inround true doesnt work! Help?
So, im making an murder mystery game, and the thing that appears on start of the round is the "show my role" gui or "show me if im murderer or innocent or sheriff" gui, and i first tried to do it in the script in the serverscriptservice because thats where my main stuff about rounds and intermission timing and stuff is located, but that didnt work, the next thing i tried was to do it with the boolvalue (i had 2 of them in my script, one for saying when the round starts and ends, and one that says to display the "show my role" gui), and that didnt work either, so a few minutes before, i tried to do it with the inround value(which in fact did work) but then the text stopped to change, and after that it just breaks, and shows the gui when the player is in lobby, and hides it when the player is in round.
My code is (Main Script):
02 | local intermissionLength = 5 |
03 | local status = game.ReplicatedStorage.IntermissionStatus |
04 | local inround = game.ReplicatedStorage.InRound |
05 | local chosenRandomNumberValue = game.ReplicatedStorage.chosenNumber |
06 | local displaychosenrole = game.StarterGui.areyoumurdorsherifforinno.Chosen.TextLabel |
07 | local tof = game.ReplicatedStorage.displayChosenTOF |
08 | local player = game.Players.LocalPlayer |
09 | local chosenRoleValue = game.ReplicatedStorage.TheChosenRole |
11 | local murdererteam = game.Teams.Murderer |
12 | local sheriffteam = game.Teams.Sheriff |
13 | local innocentteam = game.Teams.Innocent |
15 | local mineshaft = game.Workspace.MineshaftSpawn |
16 | local milbase = game.Workspace.MilbaseSpawn |
17 | local lobby = game.Workspace.LobbySpawn |
19 | local colorRed = Color 3. new( 255 / 255 , 0 / 255 , 4 / 255 ) |
20 | local colorBlue = Color 3. new( 16 / 255 , 40 / 255 , 255 / 255 ) |
21 | local colorGreen = Color 3. new( 3 / 255 , 255 / 255 , 19 / 255 ) |
23 | inround.Changed:Connect( function () |
24 | if inround.Value = = true then |
26 | for _, player in pairs (game.Players:GetChildren()) do |
28 | local char = player.Character |
29 | local randomMapNumber = math.random( 1 , 2 ) |
30 | if randomMapNumber = = 1 then |
32 | char.HumanoidRootPart.CFrame = mineshaft.CFrame |
33 | elseif randomMapNumber = = 2 then |
35 | char.HumanoidRootPart.CFrame = milbase.CFrame |
38 | local randomNumber = math.random( 1 , 3 ) |
39 | if randomNumber = = 1 then |
41 | player.TeamColor = BrickColor.new( "Really red" ) |
42 | chosenRoleValue.Value = "MURDERER" |
43 | elseif randomNumber = = 2 then |
45 | player.TeamColor = BrickColor.new( "Electric blue" ) |
46 | chosenRoleValue.Value = "SHERIFF" |
47 | elseif randomNumber = = 3 then |
49 | player.TeamColor = BrickColor.new( "Lime green" ) |
50 | chosenRoleValue.Value = "INNOCENT" |
55 | for _,player in pairs (game.Players:GetChildren()) do |
56 | local char = player.Character |
57 | char.HumanoidRootPart.CFrame = lobby.CFrame |
58 | player.TeamColor = BrickColor.new( "White" ) |
59 | chosenRoleValue.Value = "NEUTRAL" |
67 | local function roundTimer() |
70 | for i = intermissionLength, 1 , - 1 do |
73 | status.Value = "Intermission: " .. i .. " seconds left!" |
77 | for i = roundLength, 1 , - 1 do |
81 | status.Value = "Game: " .. i .. " seconds left!" |
My code for the gui script:
01 | local chosenNumber = game.ReplicatedStorage.chosenNumber |
02 | local status = script.Parent.TextLabel |
03 | local tof = game.ReplicatedStorage.displayChosenTOF |
04 | local chosenRole = game.ReplicatedStorage.TheChosenRole |
05 | local inround = game.ReplicatedStorage.InRound |
09 | chosenRole.Changed:Connect( function () |
11 | if chosenRole.Value = = "MURDERER" then |
12 | status.TextColor 3 = Color 3. new( 255 / 255 , 0 / 255 , 4 / 255 ) |
13 | status.Text = "MURDERER" |
14 | if inround.Value = = true then |
15 | script.Parent.Parent.Chosen.Visible = true |
17 | script.Parent.Parent.Chosen.Visible = false |
19 | elseif chosenRole.Value = = "SHERIFF" then |
20 | status.TextColor 3 = Color 3. new( 16 / 255 , 40 / 255 , 255 / 255 ) |
21 | status.Text = "SHERIFF" |
22 | if inround.Value = = true then |
23 | script.Parent.Parent.Chosen.Visible = true |
25 | script.Parent.Parent.Chosen.Visible = false |
27 | elseif chosenRole.Value = = "INNOCENT" then |
28 | status.TextColor 3 = Color 3. new( 3 / 255 , 255 / 255 , 19 / 255 ) |
29 | status.Text = "INNOCENT" |
30 | if inround.Value = = true then |
31 | script.Parent.Parent.Chosen.Visible = true |
33 | script.Parent.Parent.Chosen.Visible = false |
35 | elseif chosenRole.Value = = "NEUTRAL" then |
36 | status.TextColor 3 = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
37 | status.Text = "NEUTRAL" |
38 | if inround.Value = = true then |
39 | script.Parent.Parent.Chosen.Visible = true |
41 | script.Parent.Parent.Chosen.Visible = false |
also the main script is an "script" and the second is an "local script"