Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Roblox Scripting | display gui when inround true doesnt work! Help?

Asked by 4 years ago

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):

01local roundLength = 5
02local intermissionLength = 5
03local status = game.ReplicatedStorage.IntermissionStatus
04local inround = game.ReplicatedStorage.InRound
05local chosenRandomNumberValue = game.ReplicatedStorage.chosenNumber
06local displaychosenrole = game.StarterGui.areyoumurdorsherifforinno.Chosen.TextLabel
07local tof = game.ReplicatedStorage.displayChosenTOF
08local player = game.Players.LocalPlayer
09local chosenRoleValue = game.ReplicatedStorage.TheChosenRole
10 
11local murdererteam = game.Teams.Murderer
12local sheriffteam = game.Teams.Sheriff
13local innocentteam = game.Teams.Innocent
14 
15local mineshaft = game.Workspace.MineshaftSpawn
View all 89 lines...

My code for the gui script:

01local chosenNumber = game.ReplicatedStorage.chosenNumber
02local status = script.Parent.TextLabel
03local tof = game.ReplicatedStorage.displayChosenTOF
04local chosenRole = game.ReplicatedStorage.TheChosenRole
05local inround = game.ReplicatedStorage.InRound
06 
07 
08 
09chosenRole.Changed:Connect(function()
10 
11    if chosenRole.Value == "MURDERER" then
12        status.TextColor3 = Color3.new(255/255, 0/255, 4/255)
13        status.Text = "MURDERER"
14        if inround.Value == true then
15            script.Parent.Parent.Chosen.Visible = true
View all 44 lines...

also the main script is an "script" and the second is an "local script"

1 answer

Log in to vote
4
Answered by
Nckripted 580 Moderation Voter
4 years ago

I noticed a couple problems with your script here:

  1. You are using a server sided value called chosenRole, but the problem is in the local script, you are looking for every time it is changed. What I mean is, everyone will be the murderer when they start the game. Instead, use a remote event, and fire it with the team that they will be on instead of changing a value.

  2. You are being heavily dependent on ReplicatedStorage, but the thing is, exploiters can easily change these values to their liking. Use remote events and functions instead of changing a value directly.

  3. Instead of complicating stuff and using Color3.new, use Color3.fromRGB, this will allow you to change color much more easily.

  4. There is a for loop that is not properly indented on line 77.

I’m sorry if I sound like a know it all, but the thing is, your script needs a major rewrite. It needs to be a bit more cleaner and safer from exploiters.

I’ll post another answer with some scripts you could use if you’d like.

0
Also, please note I made an error while typing. I meant that everybody would be Neutral, because the change is broadcasted everywhere. Nckripted 580 — 4y
0
that didnt help me, but it gave me an idea on how to make my game safer from exploiters VikkiVuk 74 — 4y
0
Glad to hear that! I’ll continue to look at the script and see if I can find any fixes for the issues you just listed. Nckripted 580 — 4y
0
also i have an question, how do you get the "if event is fired" value VikkiVuk 74 — 4y
View all comments (6 more)
0
Use OnServerEvent on a server script and OnClientEvent on a local script. For more information on remote events, go here: https://developer.roblox.com/en-us/articles/Remote-Functions-and-Events Nckripted 580 — 4y
0
umm its been awhile... VikkiVuk 74 — 4y
0
He literally said what you need to do lmao. Dovydas1118 1495 — 4y
0
Yes, and didnt work VikkiVuk 74 — 4y
0
I listed a resource on Remote Events and Functions. Did you read that? Nckripted 580 — 4y
0
I listed a resource on Remote Events and Functions. Did you read that? Nckripted 580 — 4y
Ad

Answer this question