IntValue ignores the fact that it's value changes. Why?
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.
02 | local damage = script.Parent.Damage |
04 | script.Parent.Activated:Connect( function () |
05 | if debounce = = false then |
07 | script.Parent.Charging.Value = true |
08 | while script.Parent.Charging.Value = = true do |
10 | script.Parent.Charge.Value = script.Parent.Charge.Value +(damage.Value) |
12 | if script.Parent.Charging.Value = = false then |
20 | script.Parent.Deactivated:Connect( function () |
22 | script.Parent.Charging.Value = false |
24 | script.Parent.Charge.Value = 0 |