From 1082efcf62808f744a80a7e9099c290384779082 Mon Sep 17 00:00:00 2001 From: S-PScripts Date: Thu, 10 Oct 2024 21:25:45 +0100 Subject: [PATCH] Update KohlsLite.lua --- Luau/KAH/Main Scripts/KohlsLite.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Luau/KAH/Main Scripts/KohlsLite.lua b/Luau/KAH/Main Scripts/KohlsLite.lua index 459761c..8f6c9e4 100644 --- a/Luau/KAH/Main Scripts/KohlsLite.lua +++ b/Luau/KAH/Main Scripts/KohlsLite.lua @@ -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 @@ -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