using { /Fortnite.com/AI } broken since 38.00

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

Captura de pantalla 2025-11-11 125508.png
imagen_2025-11-11_125809734.png

Can confirm happening for me too…

This seems to be only a compiling error because AI work as intended in published islands.

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

This works

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.

confirming it also happens to me

2 Likes

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

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