Skip to content

Commit

Permalink
Update KohlsLite.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 7, 2024
1 parent b39afb7 commit 99d857b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ getgenv().kohlsexecuted = true
getgenv().deprefix = "."

-- The version of KohlsLite
getgenv().klversion = "1.82e"
getgenv().klversion = "1.82z"

getgenv().kohlsgui = false -- this exists i guess

Expand Down Expand Up @@ -165,6 +165,9 @@ editedjump = true
-- Boombox range
bgrange = 128

-- Circa range
circrad = 10

-- Mobile checker
IsOnMobile = table.find({Enum.Platform.IOS, Enum.Platform.Android}, game:GetService("UserInputService"):GetPlatform()) -- infinite yield duh

Expand Down Expand Up @@ -4540,25 +4543,24 @@ return

if string.sub(msg:lower(), 1, #prefix + 5) == prefix..'circa' then
Remind("Warning! Experimental command.")
testingvariablelol = 5
local ic = 0

for _, item in ipairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if item:IsA("Tool") then
item.Parent = game.Players.LocalPlayer.Character
ic = ic + 1
local angle = (ic - 1) * (360 / #game.Players.LocalPlayer.Backpack:GetChildren()) * (math.pi / 180)
local x = radius * math.cos(angle)
local z = radius * math.sin(angle)
local x = circrad * math.cos(angle)
local z = circrad * math.sin(angle)
item.GripPos = Vector3.new(x, 1, z)
end
end

end

if string.sub(msg:lower(), 1, #prefix + 4) == prefix..'crad' then
testingvariablelol = tonumber(string.sub(msg:lower(), #prefix + 6))
end
circrad = tonumber(string.sub(msg:lower(), #prefix + 6))
end

if string.sub(msg:lower(), 1, 7) == 'cprefix' then
Remind("Your current prefix is "..prefix)
Expand Down

0 comments on commit 99d857b

Please sign in to comment.