Great!! This works on codepen now if I can get it to work elsewhere.
This is the entire code just so we know I'm not missing something.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Eat More Chowder</title>
<style> body { background-color: #ccc; } </style>
</head>
<body>
<div id="text1">Eat</div>
<script https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenLite.min.js></script>
<script https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/plugins/TextPlugin.min.js></script>
<script>
var txt = document.getElementById("text1");
TweenLite.to(txt, 2, {text:"New text here"});
console.log(txt);
</script>
</body>
</html>
Every time I run I get this error: Uncaught ReferenceError: TweenLite is not defined
at eatMore.html:24 What am I doing wrong?