I'm trying to make an "Attempts" script, where you only have 5 attempts, but the script won't subtract the value.
01 | local UName = script.Parent:WaitForChild( "UName" ) |
02 | ------------------------------------- |
03 | local UPass = script.Parent:WaitForChild( "UPass" ) |
04 | ------------------------------------- |
05 | local Attempts = script.Parent:WaitForChild( "Attempts" ).Value |
06 | ------------------------------------- |
07 | local Button = script.Parent:WaitForChild( "Login" ) |
08 | ------------------------------------- |
09 | local pass = { |
10 | [ "Herro" ] = true ; |
11 | } |
12 | ------------------------------------- |
13 | local transparency = 0 |
14 | ------------------------------------- |
15 | local debounce = false |
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. |
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) |
02 | local UName = script.Parent:WaitForChild( "UName" ) |
03 | ------------------------------------- |
04 | local UPass = script.Parent:WaitForChild( "UPass" ) |
05 | ------------------------------------- |
06 | local Attempts = script.Parent:WaitForChild( "Attempts" ) |
07 | ------------------------------------- |
08 | local Button = script.Parent:WaitForChild( "Login" ) |
09 | ------------------------------------- |
10 | local pass = { |
11 | [ "Herro" ] = true ; |
12 | } |
13 | ------------------------------------- |
14 | local transparency = 0 |
15 | ------------------------------------- |