Become an AI on Roblox.
Snipcola
cd7b9818de
All checks were successful
Release / Build, Bundle, & Release (push) Successful in 31s
|
||
---|---|---|
.gitea/workflows | ||
.vscode | ||
assets | ||
src | ||
.eslintrc | ||
.gitignore | ||
.prettierrc | ||
aftman.toml | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
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"))()