This repository was archived by the owner on Aug 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151commands = {
5252 help = function (...)
5353 for key , value in pairs (commands ) do
54- rconsoleprint (" @@WHITE@@" )
5554 rconsoleprint (key .. ' ,\n ' )
5655 end
5756 end ,
@@ -253,12 +252,10 @@ commands = {
253252
254253 if joinlogsenabled then
255254 joinlogcon = Players .PlayerAdded :Connect (function (plr )
256- rconsoleprint (" @@WHITE@@" )
257255 rconsoleprint (" \n " .. plr .Name .. " has joined, account is " .. plr .AccountAge .. " days old!\n Input: " )
258256 end )
259257
260258 leavelogcon = Players .PlayerRemoving :Connect (function (plr )
261- rconsoleprint (" @@WHITE@@" )
262259 rconsoleprint (" \n " .. plr .Name .. " has left!\n Input: " )
263260 end )
264261 elseif not joinlogsenabled and joinlogcon and leavelogcon then
@@ -359,7 +356,6 @@ commands = {
359356}
360357
361358while task .wait () do
362- rconsoleprint (" @@WHITE@@" )
363359 rconsoleprint (" Input: " )
364360
365361 local args = rconsoleinput ()
@@ -381,8 +377,7 @@ while task.wait() do
381377 local success = pcall (commands [command ], table.unpack (tokens ))
382378
383379 if success then
384- rconsoleprint (" @@GREEN@@" )
385- rconsoleprint (" Executed " .. command .. " successfully!\n " )
380+ rconsoleprint (" Executed " .. command .. " successfully!\n " , green )
386381 else
387382 rconsoleerr (" An error occurred while running " .. command .. " \n Please report this in the support server if you think this command may be bugged.\n " )
388383 end
You can’t perform that action at this time.
0 commit comments