---
title: "Assistant prompt guide and examples"
url: /docs/en-us/assistant/prompt-engineering
last_updated: 2026-06-19T03:26:13Z
description: "Get tips and tricks on how best to prompt Roblox's AI Assistant to get the best results."
---

# Assistant prompt guide and examples

> **Success:**[Share your prompts and experiences](https://devforum.roblox.com/t/check-out-the-generative-ai-stream-and-let-us-know-your-best-prompts/3215844) in the Roblox forum so that we can make Assistant better!

This document gives guidance on prompting Assistant and provides examples and inspiration on what Assistant can do.

## Best practices

These best practices can help you get better results when using Assistant. Try them out and see what works best for your workflow.

### Be specific

If Assistant fails, add more details to your prompt and try again. Use instance names exactly as they're spelled, specify which function you want Assistant to use, and tell Assistant which type it's working with, such as a part or a model.

| **Not specific** | **More specific** |
| --- | --- |
| Place the trees in a circle. | Place 10 copies of the "pine_tree" model in ReplicatedStorage in a 30 stud radius circle around the SpawnLocation. |
| Make the part move. | Add a script to make "my_part" move up and down 10 studs repeatedly using TweenService. |
| How can I design a core loop? | Help me design a fun core loop. I want to build a game where players can hunt treasure as pirates. They can also buy and upgrade pirate ships and battle each other. |

### Use your selection

Selection is a great way of specifying an object or set of objects you want to refer to in your prompt. Select multiple objects and ask Assistant to modify them, make duplicates and place them somewhere, or continue a position pattern like maintaining placement in a line.

### Edit time and run time

Assistant sometimes confuses the difference between edit time and run time. If you ask Assistant to take an action, it will likely bias towards doing it at edit time. If you want the action to happen during run time, ask Assistant to insert a script that takes the action. For example, tell Assistant "add a script to make the time of day 8:00 AM" instead of "make the time of day 8:00 AM."

### Multi-step prompts

Consider using multi-step prompts to encourage Assistant to think. Instead of asking "Can you explain this script to me?" and pasting in the script, ask it to explain step-by-step by separating the question from the script with `###`. This separation helps Assistant deconstruct and organize the information to provide better answers.

#### Prompt

> _Can you explain what this script is doing step by step?_
>
> **###**
>
> _local part = workspace.Part_
>
> _local function onTouched(otherPart)_     _print(part.Name .. " collided with " .. otherPart.Name)_ _end_
>
> _part.Touched:Connect(onTouched)_
>
> **###**

#### Assistant response

> _Certainly! This script is an example of how to handle collisions between two parts in Roblox. Let's break it down step by step:_1. `local part = workspace.Part`: _This line of code creates a local variable named `part` and assigns it the value of the `Part` object located in the workspace. You can replace `Part` with the name of the specific part you want to detect collisions with._2. `local function onTouched(otherPart)`: _This line of code defines a function named `onTouched` that takes in a parameter `otherPart`. This function will be called whenever the part collides with another part._3. `print(part.Name .. " collided with " .. otherPart.Name)`: _This line of code prints a message to the output console, indicating that the `part` has collided with `otherPart`. The `part.Name` and `otherPart.Name` are concatenated using the `..` operator to form the message._4. `part.Touched:Connect(onTouched)`: _This line of code connects the `onTouched` function to the `Touched` event of `part`. Whenever the part collides with another part, the `onTouched` function will be called._

### Prompting for procedural models

Procedural model generation can take longer than text responses. To continue working efficiently, you can keep typing your next prompt while Assistant is generating your model.

When writing prompts for procedural models, make sure to explicitly specify the properties and parameters you want to be able to edit. For example, you can ask Assistant to "add properties to change the colors of the cabin."

It's also helpful to define how different parts of the model should respond to changes in scale or count. For example, you can say "when I scale the table longer or wider, the model should add more chairs proportionally." You can even include specific technical details, like measurements of spacing between parts, like "add a property to control the distance between the rails of the railroad."

### Reference images for procedural models

When uploading images for procedural model generation, use `.png` images. Choose images with good lighting, a clear focus on the object of interest, and a simple background. When possible, use images with good spatial information, like isometric or 3/4 angles, instead of direct front, side, or back views. Avoid low-poly style images.

For objects that can't be fully captured from a single angle, you can include multiple viewpoints in a single image to improve the accuracy of the procedural model generation.

### Keep trying

Don't get discouraged if Assistant doesn't work exactly the way you want the first time. Often, making small tweaks and trying again can lead to better results. Many AI tools are non-deterministic, meaning they don't create the exact same output each time you ask them to do something. There's some variance, which you can tap into and control using tweaks to your prompt.

AI in its current state requires work. It takes time to understand how to best speak to Assistant, what it can do, and how to get what you want out of it.

## Examples

These examples demonstrate the vast variety of tasks that Assistant can help with today. Some of them might take a few tries for you to reproduce, but give them a try and see what you can come up with yourself.

### Game mechanics - Shoot fireballs that explode

**Prompt:** Propel a fireball away from the player in the direction the player is facing when the player presses "e". Make the fireball explode when it hits something.

### Game mechanics - Set up a teams system and assign players

**Prompt:** Add a script to make a system of teams (red, blue, green, yellow) and assign each player randomly to a team.

### Game mechanics - Temple run style constant running

**Prompt:** Make my character run forward constantly like in a temple run game.

### Game mechanics - Fire power up

**Prompt:** Add a script that makes the player light on fire and jump 3 time as high if they press "q". The fire should be attached to the player and move with them. If they press "q" again, turn off the fire and reset the jump power.

### Game mechanics - NPC lasers

**Prompt:** Add a script that makes this shoot a laser using a long thin part that's blue and neon at the player if they're within 30 studs.

Add a script to make this look towards and slowly move towards the closest player if they're within 50 studs. Only move in the x and z axes, keep the y axis constant.

### Game mechanics - Interactive NPC

**Prompt:** This is an NPC. Add a prompt that lets the player interact with it. If the player interacts, have the NPC say "hello [player's name]" where player's name is the actual player's name, in a text pop up.

Add a script that makes this npc always look towards the closest player.

### Game mechanics - NPC patrolling

**Prompt:** Add a script to make this NPC move slowly between startpart and endpart repeatedly. It should face the part and then move to it, then face the other part and move to it. If the player comes within 10 studs, turn the NPC red and make it chase the player.

### Game mechanics - Update scoreboard

**Prompt:** Add a script that deletes this and adds 100 to the players score.

Add a script to show the player's score on the scoreboard.

### Camera - Lock to top down

**Prompt:** Add a script that locks the camera in a top down view on the player and follow the player, making sure the player remains in the center of the screen.

### Camera - Lock to first person

**Prompt:** Create a script to lock the camera in first person view.

### UI - Drop-down menu

**Prompt:** Create a drop down menu with 5 items.

### UI - Health bar

**Prompt:** Add a part on the ground, when a player touches it, it decreases health by 10%. Put a UI health bar in the upper center of the screen that turns red when the players health is less than 20%.

### UI - Simple HUD

**Prompt:** Create a heads up display in StarterGui. Add a healthbar to the top right, and a text label with the player's name underneath it. In the bottom right, add 4 buttons in a diamond shape, with "Potions" on top, "Weapons" on the left, "Inventory" on the bottom, and "Special" on the right. Make the colors fall color themed.

### Building - Scatter objects with randomization

**Prompt:** Add 0-5 of the selected instance "Mushroom" around each "RedwoodTree-Var01".

### Building - Night / day cycle with street lights

**Prompt:** Add a script that changes the time of day by 1 hour every second. Start at 3pm. At 7pm, turn every spotlight's brightness up to 10. At 8am turn every spotlight's brightness down to 0.

### Building - Physics-based suspension bridge

**Prompt:** Create a rope bridge. Make 10 wood planks that are 5 studs wide and 2 studs long. Place them in a row. Add rop constraints on each side of the parts, connecting each one to the part before it and after it. Make all the rope constraints visible, anchor the 1st and 10th part, and add a drag detector on the 1st and 10th part.

### Building - Add smoke to chimneys

**Prompt:** Insert an invisible brick that is non-collidable into every chimney in every house. The brick should have a particle inside it that makes smoke that flows upwards, and the smoke must be white.

### Building - Rename instances

**Prompt:** Rename all the "emptyscripts" objects to "Script+uniqueID".

### Building - Create terrain

**Prompt:** Create a terrain region with rolling hills.

### Building - Add behavior at scale

**Prompt:** Add a script to make the spotlights in the folder StreetLights flicker on and off randomly.

### Building - Replace greyboxes with assets

**Prompt:** Replace each of the selected parts with a model of the same name currently in the data model inside the AssetLibrary Folder under workspace. For example, if the part is called "Suburban House", look for a model called "Suburban House" and replace the part with that model.

### Building - Create a scalable ferris wheel

**Prompt:** /generate_procedural_model Create a cartoon-themed ferris wheel that has a base with a fence and a gate around it. Add properties to edit the number of cabins on the ferris wheel. When the number of cabins changes, the spacing between them should also change proportionally. Also add properties to change the color of each individual cabin.

### Building - Create a modular train track

**Prompt:** /generate_procedural_model Create a modular piece of train track that can be reused across different sections. Add a property to control the curvature of the track from 0-90 degrees to allow for bends. Include properties to adjust the distance between the rails, the gauge (rail size), the spacing between the railroad ties, and the overall length of the track.

### Building - Create a modular medieval castle

**Prompt:** /generate_procedural_model A stylized, round medieval castle features a red-brick base, a white-plastered upper tier, and a large terracotta conical roof. A single, dominant landmark tower stands beside numerous small, slender turrets, all anchored by green shrubbery.

### Building - Create a modular suspension bridge

**Prompt:** /generate_procedural_model A procedural bridge that adjusts the number of suspension cables based on its length and has a 'Rust' material attribute to change the material type.

### Building - Create a scalable dining set

**Prompt:** /generate_procedural_model A cyberpunk-inspired dining set with table and chairs. When I scale the table and make it longer or wider, add more chairs proportionally.