of     1   

Wrathsong
#183705776Monday, February 15, 2016 10:36 PM GMT

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
cheesecake123456
#183706042Monday, February 15, 2016 10:39 PM GMT

TotalJumps has no .Value, it's just a variable.

    of     1