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 10, 2024
1 parent 3a692c7 commit 1082efc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1996,7 +1996,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v:IsA("Tool") then
pcall(function()
v.Remote:FireServer("PlaySong",song)
v.Remote:FireServer("PlaySong",myplay)
end)
end
end
Expand Down Expand Up @@ -2067,13 +2067,15 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
end
-- broken, fixes coming soon
for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
v.GripPos = Vector3.new(rng(), 1, rng())
if v:IsA("Tool") then
v.GripPos = Vector3.new(rng(), 1, rng())
end
end

for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v:IsA("Tool") then
pcall(function()
v.Remote:FireServer("PlaySong",song)
v.Remote:FireServer("PlaySong",myplay)
end)
end
end
Expand Down

0 comments on commit 1082efc

Please sign in to comment.