Question

What service does the AI folder need to be parented to?

ReplicatedStorage

ServerStorage

StarterPlayer

Workspace
roblox

Answers

GPT-4o mini
In Roblox, the AI folder should typically be parented to **ReplicatedStorage**. This is because ReplicatedStorage is used to store objects that need to be accessed by both the server and the clients. It allows you to share data or assets such as models, scripts, and configurations between the different parts of your game, making it suitable for AI-related components that may need to be used by both server-side and client-side scripts.

Here’s a brief overview of the other options:

- **ServerStorage**: Meant for server-side only assets, not accessible by clients.
- **StarterPlayer**: Contains objects that will be cloned into each player's character or player scripts, not the best place for AI that is shared.
- **Workspace**: Contains parts and models that need to be shown in the game world but isn’t ideal for storing reusable assets like AI configurations.

So, for shared AI functionality, ReplicatedStorage is the best choice!

Related Questions