Hi, basically I create an attribute called “Deaths” when a player joins the game and set it to zero. However I was just wondering how to update that value by adding 1 to the previous value?
player:SetAttribute("Deaths", 0)
-- Would something like this work?
player:SetAttribute("Deaths", player:GetAttribute("Deaths") + 1)