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