I know there is a script for it, but I dont know what it is.
Most objects can be inserted into the game by calling
Instance.new(ObjectName, Parent)
To insert a part, you would use the following:
Instance.new("Part", game.Workspace)
This would insert a Part into Workspace.
There is 2 ways:
Instance.new("Part", Workspace )
or
a = Instance.new("Part") a.Parent = Workspace a.Name = "ThisIsAPart"