Become an AI on Roblox.
Go to file
Snipcola cd7b9818de
All checks were successful
Release / Build, Bundle, & Release (push) Successful in 31s
update(0.4.4): update roblox-ts-script
2024-11-04 23:31:45 +00:00
.gitea/workflows update(0.3.9): update release workflow 2024-10-17 20:48:02 +01:00
.vscode update(0.3.5): update template 2024-10-16 10:33:32 +01:00
assets update(0.3.5): update template 2024-10-16 10:33:32 +01:00
src update(0.4.2): update dependencies 2024-10-26 01:13:36 +01:00
.eslintrc update(0.3.5): update template 2024-10-16 10:33:32 +01:00
.gitignore update(0.3.5): update template 2024-10-16 10:33:32 +01:00
.prettierrc update(0.1.5): update template 2024-09-29 12:18:55 +01:00
aftman.toml update template and roblox-ts-script 2024-10-16 21:31:37 +01:00
LICENSE 0.0.6: update template 2024-09-22 21:13:29 +01:00
package.json update(0.4.4): update roblox-ts-script 2024-11-04 23:31:45 +00:00
README.md update(0.3.8): use gitea actions 2024-10-17 20:17:02 +01:00
tsconfig.json update template and roblox-ts-script 2024-10-16 21:31:37 +01:00

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"))()