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

Why isn't the code changing its values?

Asked by 4 years ago

It isn't changing the values below. Also, for some reason, changing the value in the client doesn't do anything. I tried pretty much everything (Remote events). Any solution?

01local db = false
02local number = script.Parent.Parent.Parent.Parent.QuestionNumber.Value
03local Value = script.Parent.Parent.Parent.Parent.QuestionNumberWordForm.Value
04script.Parent.MouseButton1Click:Connect(function()
05    if db == false then
06        db = true
07        script.Parent.Parent.Parent:TweenPosition(UDim2.new(-1.386, 0,0.356, 0), 'Out', 'Quad', 1)
08        wait(1)
09        if Value == "One" then
10            Value = "Two"
11            number = 2
12        elseif Value == "Two" then
13            Value = "Three"
14            number = 3
15        elseif Value == "Three" then
View all 39 lines...

1 answer

Log in to vote
0
Answered by 4 years ago

Sometime changing a string value to a string value may not work. So try doing this:

1local Value = script.Parent.Parent.Parent.Parent.QuestionNumberWordForm --Get The value part
2 
3script.Parent.MouseButton1Click:Connect(function()
4    if tostring(Value.Value) == "One" then --Check the value
5        Value.Value = "Two" --Set the value
6            number = 2
7    end
8end)

If that doesn't work, then just add a lot of print statements that print what they are doing

Ad

Answer this question