Prompt Details
Model
Completion - GPT-3.5 (text-davinci-003)
Token size
106 ($0.00210 / call)
Example input
gameType = "racing"
gameName = "Roblox Grand Prix"
numLevels = 10
numEnemiesPerLevel = 5
numItemsPerLevel = 20
libraryName = "Roblox Racing Kit"
Example output
-- Customize the game
local gameType = "racing"
local gameName = "Roblox Grand Prix"
local numLevels = 10
local numEnemiesPerLevel = 5
local numItemsPerLevel = 20
local libraryName = "Roblox Racing Kit"
-- Import the library
local RacingKit = require(game.ServerScriptService:WaitForChild(libraryName))
-- Function to create a new level
local function createLevel(levelNumber)
-- Create a new level
local level = RacingKit.Level.new("Level " .. levelNumber)
-- Add enemies to the level
for j = 1, numEnemiesPerLevel do
level:AddEnemy(RacingKit.Enemy.new("Enemy " .. j))
end
-- Add items to the level
for k = 1, numItemsPerLevel do
level:AddItem(RacingKit.Item.new("Item " .. k))
end
return level
end
-- Create a new game
local game = RacingKit.new(gameName)
-- Add levels to the game
for i = 1, numLevels do
local level = createLevel(i)
game:AddLevel(level)
end
-- Start the game
game:Start()
By purchasing this prompt, you agree to our terms of service
TEXT-DAVINCI-003
Yes, you read it right!
this prompt will generate the script for any type of video game you wish to create on Roblox.
the scripts are absolutely working!!!
create an entire working video game in no time with this prompt.
✅ fully customizable prompt
✅ working scripts
✅ customization guide
✅ post-purchase support
...more
Added over 1 month ago
- Reviews for this prompt (1)

