Everything you need to know to get started with ScriptWEAVER
Welcome to ScriptWEAVER! This guide will help you get up and running in minutes. ScriptWEAVER is designed to be intuitive and powerful, helping you write better Roblox code faster.
Prerequisites: You'll need a Roblox Studio installation and a ScriptWEAVER account.
Follow these simple steps to install ScriptWEAVER:
Sign up at scriptweaver.ai and choose your plan.
Download the ScriptWEAVER plugin for Roblox Studio from your dashboard.
Roblox Studio > Plugins > Manage Plugins > Install ScriptWEAVER
Open the plugin in Roblox Studio and log in with your ScriptWEAVER credentials.
Learn the fundamentals of using ScriptWEAVER:
Simply describe what you want to build in natural language:
// Type in the ScriptWEAVER prompt:
"Create a click detector that teleports the player to spawn"
// ScriptWEAVER generates:
local clickDetector = Instance.new("ClickDetector")
clickDetector.Parent = script.Parent
clickDetector.MouseClick:Connect(function(player)
local spawnLocation = workspace.SpawnLocation
if spawnLocation then
player.Character:MoveTo(spawnLocation.Position)
end
end)
Get intelligent suggestions as you type:
-- Start typing and press Ctrl+Space for suggestions
local player = game.Players.LocalPlayer
player. -- AI suggests: Character, UserId, Name, etc.
Describe functionality in plain English and get production-ready Lua code instantly.
Automatic bug detection with detailed explanations and fix suggestions.
Analyze code performance and apply optimizations automatically.
Generate comprehensive documentation for your scripts automatically.
Access ScriptWEAVER programmatically:
POST https://api.scriptweaver.ai/v1/generate
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"prompt": "Create a GUI button that saves player data",
"language": "lua",
"context": "Roblox"
}
{
"success": true,
"code": "-- Generated Lua code here",
"explanation": "This code creates a GUI button...",
"confidence": 0.95
}
Provide detailed descriptions for better code generation results.
Always review and test AI-generated code before deploying to production.
Provide context about your project for more accurate suggestions.
Refine prompts and generated code through iterations for best results.
If the plugin doesn't load in Roblox Studio:
If you can't log in:
If code generation is slow:
Need More Help? Contact our support team at support@scriptweaver.ai