Who can give me a 8ball command?

Who can give me a 8ball command pls?

1 Like

I will not give the full command code as I do not know how you have your command handler setup, but I will give you what you need!

let responses = ["Yes", "No", "Maybe"] // Add responses to this!
let response = responses[Math.floor(Math.random() * responses.length)];
// Just use "response" variable where the response will be in the command response
1 Like