Using SQL Server Management Studio
From source table contextual menu you select Script Table as > CREATE To > New Query Editor Window:

Then you edit the source code changing, for example, the name of table (the new name):
USE [AdventureWorks2012]
GO
/****** Object: Table [HumanResources].[Employee] Script Date: 1/4/2014 1:05:14 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [HumanResources].[AuditEmployee]( -- <-- Here you change table name
[BusinessEntityID] [int] NOT NULL,
[NationalIDNumber] [nvarchar](15) NOT NULL,
[LoginID] [nvarchar](256) NOT NULL,
...