davidpkami
(davidpkami)
November 11, 2025, 11:58am
1
Summary
using { /Fortnite.com/AI } broken since 38.00. The code does not compile and keeps saying “Did you forget using { /Fortnite.com/AI }” although it is already in the code and there is not errors on Visual Studio
Please select what you are reporting on:
Creative
What Type of Bug are you experiencing?
Assets
Steps to Reproduce
Just open the project
Expected Result
Project openes without issues
Observed Result
The code does not compile
Platform(s)
windows
Island Code
Not yet
Upload an image
lookum
(lookum)
November 11, 2025, 12:10pm
4
Can confirm happening for me too…
Icifyed
(Icifyed)
November 11, 2025, 12:17pm
5
This seems to be only a compiling error because AI work as intended in published islands.
OVTSIDERZ
(OUTSIDER)
November 11, 2025, 12:21pm
6
FIX
import this module:
using { /Fortnite.com/AI/movement_types }
and instead of:
MT:movement_type = movement_types.Running
write:
MT:movement_type = Running
7 Likes
christitze
(GraphicSurfer)
November 11, 2025, 1:47pm
8
Yep. same here. Can confirm that adding using { /Fortnite.com/AI/movement_types } and MT:movement_type = Walking seems to have fixed the problem for me.
MistJawa
(Mist Jawa)
November 11, 2025, 4:33pm
9
confirming it also happens to me
2 Likes
Flak
(Flak)
November 11, 2025, 5:17pm
10
Thanks for reporting. The ticket will be updated, but we wanted to let you know the team is working on this.
The status of FORT-1013517 changed to ‘Needs Triage’. We’ve confirmed the issue and it’s waiting to be assigned to someone to fix it.
1 Like
sun.pirate
(sun.pirate)
November 11, 2025, 7:33pm
12
Found the same issue.
I fixed it by importing using { /Fortnite.com/AI/movement_types } directly and using Running instead of movement_types.Running, etc