local OriginalJumps = statnumbers:WaitForChild("Jumps")
local LocalJumps = statnumbers:WaitForChild("LocalJumps")
local TotalJumps = LocalJumps.Value - OriginalJumps.Value
JumpsLabel.Text = "Jumps: "..tostring(TotalJumps.Value)
throws an error saying attempt to index number value..what gets me is that it still errored after i used tostring. whats up |