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

Commit

Permalink
Update KohlsLite.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 11, 2024
1 parent 7040bc5 commit 3d57a71
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ I know this script is inconsistent with the fact it uses Game with and without G
-- Notifications
local function Remind(msg)
game.StarterGui:SetCore("SendNotification", {
Title = "KohlsLite v1.86FORTRESS",
Title = "KohlsLite v1.864",
Text = msg,
Duration = 1
})
Expand Down Expand Up @@ -124,7 +124,7 @@ getgenv().deprefix = "."
getgenv().klversion = "1.861"

-- KohlsLite Start Gui
getgenv().kohlsgui = fals
getgenv().kohlsgui = false

-- Chat function
local function Chat(msg)
Expand Down Expand Up @@ -181,14 +181,14 @@ Stats.starttime = os.clock()

-- Start up scripts
local function startupScripts()
if not getgenv().autoruncmds then
for i = 1, #defaults do
if not getgenv().autoruncmds then
for i = 1, #defaults do
Chat(defaults[i])
end
else
for i = 1, #getgenv().autoruncmds do
for i = 1, #getgenv().autoruncmds do
Chat(getgenv().autoruncmds[i])
end
end
end
end

Expand Down Expand Up @@ -2088,7 +2088,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
end
end

for _, v in men, backpack:GetChildren() do
for _, v in next, backpack:GetChildren() do
if v:IsA("Tool") then
v.Parent = char
v.Parent = backpack
Expand All @@ -2115,7 +2115,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
v.Handle.Position = v.Handle.Position + (i - 1) * stackOffset
end

for i, v in men, char:GetChildren() do
for i, v in next, char:GetChildren() do
if v:FindFirstChild("Handle") then
local Speed
local Height
Expand Down

0 comments on commit 3d57a71

Please sign in to comment.