Example Prompts
A grab bag of prompts that work well with Revix. Copy any of them straight into the chat, or use them as a starting point and adapt to your game.
Inspecting your game
Use these to get a quick picture of what is in your place before you start making changes.
Show me all the scripts in my gameList everything in ReplicatedStorageFind every usage of FireServerWhich scripts reference the leaderstats folder?Summarize what each script in ServerScriptService does
Creating scripts
These prompts produce new scripts in the right service with the right boilerplate.
Create a script in ServerScriptService that gives players 100 coins on joinAdd a debounce to the touch handler in Workspace/KillBrickMake a server script that respawns dropped tools after 30 secondsWrite a LocalScript that plays a sound when the player jumpsAdd a leaderstats script with Coins and Wins as IntValues
Editing existing scripts
Refactors, bug fixes, and feature additions on code that already exists.
Refactor the shop module to use a single GetProductInfo functionAdd input validation to my RemoteEvent handlerReplace all prints in ServerScriptService with warn callsFix the off-by-one error in the wave spawnerConvert the inventory script from polling to event-driven
Instances and properties
Direct manipulation of parts, models, and properties.
Change the spawn platform color to redAnchor every Part in Workspace.MapSet CanCollide to false on every Decoration childMove the SpawnLocation up by 10 studsRename every Part named "Part" to a descriptive name
UI
Building ScreenGuis, frames, and HUD components in StarterGui.
Create a ScreenGui with a health bar in StarterGuiBuild a settings menu with volume and sensitivity slidersAdd a coin counter in the top-right corner of the screenMake a pause menu with Resume, Settings, and Quit buttonsCreate a notification toast that slides in from the right
Game assets
Image generation for icons and thumbnails. Each one costs 3 credits.
Generate a game icon with a medieval fantasy themeCreate a 16:9 thumbnail banner for a sci-fi shooterMake a game icon for a cute farming sim with pastel colorsGenerate a thumbnail showing a hero standing on a cliff at sunset
3D and animation (Beta)
These features are in beta and free to use while in beta. See How Credits Work for current limits.
Generate a low-poly viking longshipCreate a stylized treasure chest modelMake my R15 character do a wave animationGenerate an idle animation that breathes slowly
Refactors and explanations
When you want to understand or clean up code that has grown messy.
Find every magic number and replace with named constantsExplain how my shop system worksIdentify dead code in ServerScriptServiceSplit the giant PlayerHandler script into smaller modulesWalk me through the data flow from client click to server response
Troubleshooting
If a prompt does not produce the result you expected, try rephrasing with the exact instance path or being explicit about which service. See the Troubleshooting Hub or Fix Unexpected Edits.