Game not reading IntValue Correctly?
Asked by
5 years ago Edited 5 years ago
Hello!
I've been struggling with a bigger problem inside of my game for a bit now, and I finally found the problem. However, I'm not sure how to fix it.
When a player joins, a folder is created inside them (in addition to leaderstats, they are siblings) and there is an intvalue inside of that. Every time I print the value, it returns 0 no matter what.
It is inside of a for loop, so Players[i] is the local player
1 | local Players = game.Players:GetChildren() |
3 | local Spent = Players [ i ] .folder.spent.Value |
This ALWAYS returns "Spent 0", and never returns an error
This is the code that changes it, it is in a textbutton in a localscript:
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | local player = game.Players.LocalPlayer |
3 | if player.leaderstats.Coins.Value > 4 then |
4 | player.spent.Value = player.spent.Value + 5 |
5 | player.leaderstats.Coins.Value = player.leaderstats.Coins.Value - 5 |