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

IntValue ignores the fact that it's value changes. Why?

Asked by 5 years ago

I made a script where as long as it's activated, a loop runs to increase IntValueA by IntValueB.

For Example: IntValueA = 0 IntValueB = 10

The first loop runs, and IntValueA is now 10, it runs again and it becomes 20. Normal and works perfect. If I change IntValueB however, it still increases by 10 instead of whatever I set it to. Why?? Also, Damage is IntValueB, Charge is IntValueA.

01local debounce = false
02local damage = script.Parent.Damage
03 
04script.Parent.Activated:Connect(function()
05    if debounce==false then
06    debounce = true
07    script.Parent.Charging.Value = true
08    while script.Parent.Charging.Value==true do
09            print(damage.Value)
10            script.Parent.Charge.Value = script.Parent.Charge.Value +(damage.Value)
11            print ("obama")
12            if script.Parent.Charging.Value==false then
13            break
14            end
15            wait(1)
View all 27 lines...
0
Is this a Script or a LocalScript? If this is a Script and you are updating Damage on the client then this script wont see any changes as it wont be replicated. You would want to look at updating it via RemoteEvent if this is the case vector3_zero 1056 — 5y
0
updated my answer Azure_Kite 885 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

How did you change the value of intValueB?

Make sure you didnt change the one insideStarterPack

but instead the one inside the player's Backpackor the player's character if equipped

Edit :

Did you change the value using a localscript?

It will only change the value locally and wont be replicated to the server and other players

so try doing it via a server script or use remote event

0
I have a script inside a GUI, if a player presses a button his intValueB changes, when I check the value of intValueB, it does change but it does not add the update amount and still adds by the old one. RoblotXRB 3 — 5y
0
Thank you! A Remote Event worked! I will accept your answer. RoblotXRB 3 — 5y
Ad

Answer this question