GameState = Instance.new("IntValue") GameState.Parent = f.Backpack f.Backpack.Value.name = GameState f.Backpack.GameState.Value = 1
Why isn't this working? Why isn't it changing the name? I don't see what's wrong with it?
Why not just do
GameState = Instance.new("IntValue") GameState.Parent = f.Backpack GameState.Name="GameState" GameState.Value=1