Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.
/ Roblox-AI Public archive

Become an AI on Roblox.

License

Notifications You must be signed in to change notification settings

snipcola/Roblox-AI

Repository files navigation

Roblox-AI

Automates your Roblox character, enabling communication with others and custom functions.
Note: This project was created with Create-Roblox-TS-Script - refer there for compilation.

Script

getgenv()["RobloxAI.Config"] = {
  Script = {
    Name = "RobloxAI",
    Whitelist = {},
    Blacklist = {},
    Debug = false
  },
  Settings = {
    AntiAFK = true,
    MinimumDistance = 8,
    MessageProcessDelay = 1,
    LookSpeed = 0.25
  },
  AI = {
    Prompt = "",
    Model = "gpt-4o-mini",
    EnabledFunctions = {
      "sendMessage",
      "lookAtPlayer",
      "teleportToPlayer",
      "walkToPlayer",
      "followPlayer",
      "stopWalkingToPlayer",
      "jump",
      "setWalkSpeed",
      "setJumpPower"
    },
    MaximumCharacterLimit = 200,
    MaximumMessageContext = 5,
    Api = "https://api.openai.com/v1/chat/completions",
    Key = "" -- Replace with your OpenAI API key.
  }
}

loadstring(game:HttpGetAsync("https://git.snipcola.com/snipcola/Roblox-AI/releases/download/latest/script.min.luau"))()