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 11, 2024
1 parent 4f2cbb1 commit 93b4080
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 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.86d",
Title = "KohlsLite v1.86dave",
Text = msg,
Duration = 1
})
Expand Down Expand Up @@ -2094,7 +2094,8 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
local z = math.sin(angle) * circrad
-- item.GripPos = (CFrame.Angles(0, 0, angle) * CFrame.new(x, 1, z)).p
-- item.GripPos = (CFrame.Angles(0, angle, 0) * CFrame.new(x, 1, z)).p
item.GripPos = (CFrame.new(x, 1, z) * CFrame.Angles(0, math.rad(90), 0)).p
-- item.GripPos = (CFrame.new(x, 1, z) * CFrame.Angles(0, math.rad(90), 0)).p
item.GripPos = (CFrame.new(x, 1, z) * CFrame.Angles(0, angle, 0)).p
end
end

Expand Down

0 comments on commit 93b4080

Please sign in to comment.