Hello!

I like to do all my manual enemy hex editing in the hex editor in FCEUXD.
So, the first 'enemy' placed in the Autoscrolling levels is the "Autoscrolling" sprite (Type: 211 (D3 in hex)).
We also need the data for the levels that we're looking at; in this case, 3-3 and 7-8.
3-3
Object Data: 1FE79
Enemy Data: C59E
Object Set: 1-Plains
7-8
Object Data: 1EF7F
Enemy Data: C33D
Object Set: 1-Plains
With the SMB3 ROM open in FCEUXD, when you scroll down to 0xC59E, the first 4 bytes in the original data that you would see are: 01 D3 00 50.
Enemy data sets should always begin with a "00" or "01" byte, so don't remove it and make sure that it's there. SMB3 Workshop displays your enemies by looking for this 'first' byte.
The "D3 00 50" is the Autoscrolling data that you're looking for.
Scroll back up to 0xC33D. The first 4 bytes in the original data would be: 01 A0 11 18 (the necessary "01" and the first "Green Piranha Plant (upward)" enemy). Simply replace "A0 11 18" with "D3 00 50", and you should have your Autoscrolling set up for your custom 7-8!
For reference, the other Autoscrolling settings seen in other original SMB3 levels (where the Autoscrolling sprite is further down while viewing the level in SMB3 Workshop) are the following:
World 1-Dungeon Spike Room
Object Data: 2AA3A
Enemy Data: D361
Object Set: 2-Dungeon
Relevant Data: D3 01 30 D3 1C 30
(This area actually uses 2 Autoscrolling sprites for its effect.)
World 2-Dungeon Spike Room
Object Data: 29C0C
Enemy Data: D264
Object Set: 9-Desert
Relevant Data: D3 04 31
3-8
Object Data: 1AC69
Enemy Data: C964
Object Set: E-Underground
Relevant Data: D3 00 51
4-2
Object Data: 27077
Enemy Data: CF24
Object Set: B-Giant
Relevant Data: D3 00 52
5-9
Object Data: 27212
Enemy Data: CF8B
Object Set: D-Cloudy
Relevant Data: D3 00 20
World 6-Dungeon #3 Falling Room
Object Data: 2B136
Enemy Data: D4B2
Object Set: 2-Dungeon
Relevant Data: D3 08 40
Lost Levels-Lost 6 - Ice
Object Data: 232CF
Enemy Data: CBF5
Object Set: C-Ice
Relevant Data: D3 00 53
Lost Levels-Lost 9 - Clouds
Object Data: 26CB9
Enemy Data: CECD
Object Set: D-Cloudy
Relevant Data: D3 00 55
Lost Levels-Lost 10 - Clouds
Object Data: 279BB
Enemy Data: CECD
Object Set: D-Cloudy
Relevant Data: D3 00 55
Hopefully this helps. Best of luck. You can do it!
