ERC20 token not deploying on Remix

Hi @Timbrian1234,

I recommend following the tutorial to deploy a token locally: Create an ERC20 using Remix, without writing Solidity

Once you have done that you could try the following simple token:

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/token/ERC20/ERC20.sol";

contract Token is ERC20 {

    constructor () public ERC20("Token", "TKN") {
        _mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
    }
}