ADVERTISEMENTREMOVE ADS
Game icon

🤖 Roblox АI: Аutomаticаlly respond to messаges

Script preview thumbnail
Script Preview

Description

⚠️ Notice

You will need an OpenAI API key with available credit to use this! The script itself is free.

This works on games other than a literal baseplate.
ㅤㅤ‎
Description

When using this script:

  • Your Roblox character will automatically respond to players, if they're in-distance.

  • Your Roblox character can perform certain functions by other players, such as jumping. You can enable & disable functions.

The AI is configurable, you can change many aspects of its functionality - for example, you can tweak the AI's personality and behavior by changing the prompt.

ㅤㅤ‎

Instructions

  1. Create an API key here: https://platform.openai.com/settings/profile?tab=api-keys

    It should look something like sk-******. Make sure it has credit.

  2. Once you have the API key, replace the "Key" property in the config with your key.

  3. (Optional) Change the rest of the configuration to your liking.

ㅤㅤ‎

Source Code

https://code.snipcola.com/snipcola/Roblox-AI

ㅤㅤ‎

Features:

  • AI
ADVERTISEMENTREMOVE ADS
35 Lines • 862 Bytes
Verified
Raw
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://code.snipcola.com/snipcola/Roblox-AI/releases/download/latest/script.min.luau"))()
ADVERTISEMENTREMOVE ADS

Comments

1 comment
to add a comment
Ma

for me it always says Sorry, something went wrong. Try again. when someone speaks to me.

1
0
ADVERTISEMENTREMOVE ADS