From dc38c8f0b2b7a0217b2e433946bcbfb917747655 Mon Sep 17 00:00:00 2001 From: Andyyy7666 <86536434+Andyyy7666@users.noreply.github.com> Date: Mon, 27 Dec 2021 17:07:29 +0100 Subject: [PATCH] Update commands.lua --- ND_Core/source/client/commands.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ND_Core/source/client/commands.lua b/ND_Core/source/client/commands.lua index 968fe84..2bbd54f 100644 --- a/ND_Core/source/client/commands.lua +++ b/ND_Core/source/client/commands.lua @@ -31,7 +31,8 @@ if config.enableAopCommand then aop = "Current AOP: " .. aop }) TriggerEvent("chat:addMessage", { - args = {"~b~Aop has been changed to: " .. aop} + color = {0, 150, 250}, + args = {"Aop has been changed to", aop} }) end) RegisterNetEvent("returnAop") @@ -41,7 +42,8 @@ if config.enableAopCommand then aop = "Current AOP: " .. aop }) TriggerEvent("chat:addMessage", { - args = {"~b~The current AOP is: " .. aop} + color = {0, 150, 250}, + args = {"The current AOP is", aop} }) end) end