Skip to content

Commit

Permalink
Fix quote things with these commands
Browse files Browse the repository at this point in the history
  • Loading branch information
WalkerOfBacon authored Jun 10, 2024
1 parent fb8b646 commit 51f47fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MainModule/Server/Commands/Admins.luau
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ return function(Vargs, env)
local teamColor = Functions.ParseBrickColor(args[2])
service.New("Team", {
Parent = service.Teams;
Name = teamName;
Name = teamName:gsub(`"`, "");
TeamColor = teamColor;
AutoAssignable = false;
})
Expand Down Expand Up @@ -1398,7 +1398,7 @@ return function(Vargs, env)
for _, v in service.Players:GetPlayers() do
Remote.RemoveGui(v, "Message")
Remote.MakeGui(v, "Message", {
Title = args[1];
Title = args[1]:gsub(`"`, "");
Message = args[2];
Time = (#tostring(args[1]) / 19) + 2.5;
--service.Filter(args[1],plr, v);
Expand Down

0 comments on commit 51f47fc

Please sign in to comment.