Archived
1
0
This repository has been archived on 2025-03-09. You can view files and clone it, but cannot push or open issues or pull requests.

Roblox-AI

Automates your Roblox character, enabling communication with others and custom functions.
Note: This project was created with Create-Roblox-TS-Script - refer to 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.lua"))()
Description
Become an AI on Roblox.
Readme 16 MiB
2025-02-25 08:10:40 +00:00
Languages
TypeScript 96%
JavaScript 4%