Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

Commit

Permalink
KL
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 14, 2024
1 parent 6e6466c commit 42732d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2747,7 +2747,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
if enterPressed then
local command = textBox.Text
if command and command ~= "" then
game.Players:Chat(command)
Chat(command)
textBox.Text = ""
end
end
Expand All @@ -2774,7 +2774,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
end

if string.sub(msg:lower(), 1, #prefix + 5) == prefix..'cgoto' then
local dasplayer = string.sub(msg:lower(), #prefix + 7)
local dasplayer = string.sub(msg:lower(), #prefix + 7)
PLAYERCHECK(dasplayer)
if player ~= nil then
gotou = cplr
Expand Down

0 comments on commit 42732d2

Please sign in to comment.