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

Script not taking away from a value?

Asked by 8 years ago

I'm trying to make an "Attempts" script, where you only have 5 attempts, but the script won't subtract the value.

01local UName = script.Parent:WaitForChild("UName")
02-------------------------------------
03local UPass = script.Parent:WaitForChild("UPass")
04-------------------------------------
05local Attempts = script.Parent:WaitForChild("Attempts").Value
06-------------------------------------
07local Button = script.Parent:WaitForChild("Login")
08-------------------------------------
09local pass = {
10    ["Herro"] = true;
11}
12-------------------------------------
13local transparency = 0
14-------------------------------------
15local debounce = false
View all 42 lines...

It will display the text, just not subtract the value. Any suggestions, because there aren't any errors.

Info:

1--No filtering Enabled
2--It's a local script.
0
Try assigning "Attempts" to the Attempts object itself instead of the value, then use Attempts.Value whenever you wish to refer to it through your script. Let me know if that works and I will provide more details afterwards Necrorave 560 — 8y
0
You are using the value of attempts and but not setting them remove the "value" part at the top and change line 25 to Attempts.Value = Attempts.Value -1 so that it updates User#5423 17 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

Its a simple yet common mistake, on line 05, all you need to do is take away the ".Value" part and re-assign this to where you next use the variable. This is because when you assigned the variable you also assigned the value which means that you cant change it, where as now you can access the child of it:

01--(All errors should be fixed)
02local UName = script.Parent:WaitForChild("UName")
03-------------------------------------
04local UPass = script.Parent:WaitForChild("UPass")
05-------------------------------------
06local Attempts = script.Parent:WaitForChild("Attempts")
07-------------------------------------
08local Button = script.Parent:WaitForChild("Login")
09-------------------------------------
10local pass = {
11    ["Herro"] = true;
12}
13-------------------------------------
14local transparency = 0
15-------------------------------------
View all 43 lines...
Ad

Answer this question