<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: sebattfg</title>
    <description>The latest articles on DEV Community by sebattfg (@sebattfg).</description>
    <link>https://dev.to/sebattfg</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3982468%2F2161a40e-29c0-4e67-b34b-54e3ab21a41f.png</url>
      <title>DEV Community: sebattfg</title>
      <link>https://dev.to/sebattfg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sebattfg"/>
    <language>en</language>
    <item>
      <title>How to Use DeepSeek (and Other Free AI) in Roblox Studio for Free</title>
      <dc:creator>sebattfg</dc:creator>
      <pubDate>Sat, 13 Jun 2026 09:47:39 +0000</pubDate>
      <link>https://dev.to/sebattfg/how-to-use-deepseek-and-other-free-ai-in-roblox-studio-for-free-4dbm</link>
      <guid>https://dev.to/sebattfg/how-to-use-deepseek-and-other-free-ai-in-roblox-studio-for-free-4dbm</guid>
      <description>&lt;p&gt;If you've been using Lemonade.gg, you already know the pain: 4 free prompts, then $20 for 100 more. For a Roblox developer who codes every day, that adds up fast.&lt;/p&gt;

&lt;p&gt;There's a better way. With &lt;strong&gt;ZeroScript Free&lt;/strong&gt;, you can connect DeepSeek and other free AI models directly into Roblox Studio with no subscription, no prompt limits, and no paywall.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0lbiiwjxuk5vmkmh17o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0lbiiwjxuk5vmkmh17o.png" alt="ZeroScript Free building a shop system in Roblox Studio via DeepSeek" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ZeroScript Free is an open-source Chrome/Edge extension that bridges your browser's AI chat interface directly to Roblox Studio via MCP (Model Context Protocol).&lt;/p&gt;

&lt;p&gt;Instead of copy-pasting code between a chat window and Studio, ZeroScript lets the AI read your scripts, write changes, and interact with your project: all in real time.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Free and open source&lt;/li&gt;
&lt;li&gt;Works with DeepSeek (free), and compatible with other AI models&lt;/li&gt;
&lt;li&gt;No API key required: uses the free web interface&lt;/li&gt;
&lt;li&gt;Unlimited prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;GitHub: &lt;a href="https://github.com/sebattfg/ZeroScript-Free" rel="noopener noreferrer"&gt;github.com/sebattfg/ZeroScript-Free&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Why DeepSeek?
&lt;/h2&gt;

&lt;p&gt;DeepSeek is one of the strongest free AI models available right now. The web version at chat.deepseek.com is completely free with no rate limits that would block normal development use.&lt;/p&gt;

&lt;p&gt;ZeroScript works by injecting into the DeepSeek chat interface and routing messages through a local WebSocket bridge into Roblox Studio. You type in DeepSeek, your game changes in Studio.&lt;/p&gt;

&lt;p&gt;Other free AI models are on the roadmap. Gemini and ChatGPT are already partially supported (unstable for now) and the architecture is model-agnostic by design.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it Works
&lt;/h2&gt;

&lt;p&gt;The setup has three parts:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The Chrome/Edge extension&lt;/strong&gt;: injects into DeepSeek's chat interface and intercepts messages&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Bridge (start.bat)&lt;/strong&gt;: a local server running on your machine that handles the WebSocket connection&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Roblox Studio MCP&lt;/strong&gt;: the built-in MCP server in Roblox Studio that receives commands from the bridge&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;When you send a message in DeepSeek, it flows through the bridge into Studio. The AI can read your scripts, create objects, and make changes without you ever leaving the chat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Setup Guide
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Install the extension&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Download the extension from the GitHub repo. In Chrome or Edge, go to &lt;code&gt;chrome://extensions&lt;/code&gt;, enable Developer Mode, and click "Load unpacked". Select the extension folder.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Enable MCP in Roblox Studio&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Open Roblox Studio, click the Assistant AI button, open its settings, and enable "Enable MCP Server". Studio will start listening for connections on a local port.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Run the Bridge&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Double-click &lt;code&gt;start.bat&lt;/code&gt; from the downloaded files. A terminal window will open: keep it running.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: Start a session&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Go to &lt;a href="https://chat.deepseek.com" rel="noopener noreferrer"&gt;chat.deepseek.com&lt;/a&gt;. You'll see the ZeroScript panel. Click "Start Session" and you're connected.&lt;/p&gt;

&lt;p&gt;That's it. Type in DeepSeek, watch Studio respond.&lt;/p&gt;

&lt;h2&gt;
  
  
  ZeroScript vs Lemonade.gg
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;ZeroScript Free&lt;/th&gt;
&lt;th&gt;Lemonade.gg&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Price&lt;/td&gt;
&lt;td&gt;Free, unlimited&lt;/td&gt;
&lt;td&gt;$20 / 100 prompts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open source&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI model&lt;/td&gt;
&lt;td&gt;DeepSeek (free web)&lt;/td&gt;
&lt;td&gt;Proprietary&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup time&lt;/td&gt;
&lt;td&gt;~2-3 minutes&lt;/td&gt;
&lt;td&gt;~8+ minutes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prompt limit&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;4 free, then paid&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What Can You Do With It?
&lt;/h2&gt;

&lt;p&gt;Once connected, you can ask the AI to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generate full Luau scripts and insert them directly into your project&lt;/li&gt;
&lt;li&gt;Debug errors from the output log&lt;/li&gt;
&lt;li&gt;Create and modify instances in the Explorer&lt;/li&gt;
&lt;li&gt;Refactor existing scripts&lt;/li&gt;
&lt;li&gt;Build systems (combat, inventory, UI, datastores) from a description&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The AI has full context of your open Studio session: it reads your script tree before touching anything.&lt;/p&gt;

&lt;h2&gt;
  
  
  Roadmap
&lt;/h2&gt;

&lt;p&gt;ZeroScript Free is actively developed. Planned features include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gemini and ChatGPT support (use any free AI)&lt;/li&gt;
&lt;li&gt;Improved session stability&lt;/li&gt;
&lt;li&gt;Better context injection for large projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started
&lt;/h2&gt;

&lt;p&gt;Everything is free and open source.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/sebattfg/ZeroScript-Free" rel="noopener noreferrer"&gt;github.com/sebattfg/ZeroScript-Free&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video tutorial&lt;/strong&gt;: &lt;a href="https://youtu.be/QaViHSqzy5Q" rel="noopener noreferrer"&gt;youtu.be/QaViHSqzy5Q&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Discord&lt;/strong&gt;: &lt;a href="https://discord.gg/9aNyZsMWcb" rel="noopener noreferrer"&gt;discord.gg/9aNyZsMWcb&lt;/a&gt; for support and updates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support the project&lt;/strong&gt;: &lt;a href="https://ko-fi.com/sebattfg" rel="noopener noreferrer"&gt;ko-fi.com/sebattfg&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If this saves you money or time, drop a star on the repo. It helps more developers find it.&lt;/p&gt;

</description>
      <category>roblox</category>
      <category>ai</category>
      <category>opensource</category>
      <category>gamedev</category>
    </item>
  </channel>
</rss>
