Hello, I am making a voting system for my game, but it does not instance.new(). Does anyone know what is happening? This is a server script inside of ServerScriptService.
game.Players.PlayerAdded:Connect(function(plr)
local votingtag = Instance.new("StringValue")
votingtag.Name = "VotingTag"
votingtag.Parent = plr.Character
end)