Hi Noah,
Try something like this in a file that runs at system startup:
#---------------- cut here
### Define your outside interface and inside target address ...
192.168.1.10 is just an example
WAN=eth0
LAN=
192.168.1.10
### Define user tables
iptables -N forwarding_rule
iptables -t nat -N prerouting_rule
### Link users tables into default tables
iptables -A FORWARD -j forwarding_rule
iptables -t nat -A PREROUTING -j prerouting_rule
### Clean tables
iptables -F forwarding_rule
iptables -t nat -F prerouting_rule